Servus!
Ich habe folgendes Script und ein Problem damit!
Ich möchten einen kleinen Editor für mein CMS schreiben, um meinen Kunden ein wenig mehr Komfort zu bieten. So weit so gut.
Mit dem IE kann ich das iframe ansprechen und auch reinschreiben, nur der Mozilla mukt da auf. Ich kann einfach nicht in das iframe schreiben / tippen!!
Vielleicht weiß ja einer von euch woran es liegt ???
Danke
Ciao Goose
Hier meine "Quellcode":
<iframe name="editor" id="editor" style="width: 100%; height:200;border-style:solid;border-width:1px;border-color:#000000" src="empty.htm"></iframe>
</body>
<script>
if (document.all){ //IE
frames.editor.document.designMode = "On";
}else{ //Mozilla
editor.document.designMode = 'On';
//document.getElementById("editor").contentDocument.designMode = "on";
}
function formatText(theCommand) {
alert(theCommand);
var theEditor;
if(document.all){ //IE
if(theCommand == "fett") editor.document.execCommand('Bold', false, ';');
}else{ //Mozilla
document.getElementById("editor").contentWindow.document.execCommand(theCommand, false, ';');
}
}
</script>
Ich habe folgendes Script und ein Problem damit!
Ich möchten einen kleinen Editor für mein CMS schreiben, um meinen Kunden ein wenig mehr Komfort zu bieten. So weit so gut.
Mit dem IE kann ich das iframe ansprechen und auch reinschreiben, nur der Mozilla mukt da auf. Ich kann einfach nicht in das iframe schreiben / tippen!!
Vielleicht weiß ja einer von euch woran es liegt ???
Danke
Ciao Goose
Hier meine "Quellcode":
<iframe name="editor" id="editor" style="width: 100%; height:200;border-style:solid;border-width:1px;border-color:#000000" src="empty.htm"></iframe>
</body>
<script>
if (document.all){ //IE
frames.editor.document.designMode = "On";
}else{ //Mozilla
editor.document.designMode = 'On';
//document.getElementById("editor").contentDocument.designMode = "on";
}
function formatText(theCommand) {
alert(theCommand);
var theEditor;
if(document.all){ //IE
if(theCommand == "fett") editor.document.execCommand('Bold', false, ';');
}else{ //Mozilla
document.getElementById("editor").contentWindow.document.execCommand(theCommand, false, ';');
}
}
</script>
Kommentar