Hallo,
Iframe -> ContentEditable auf true -> Eigene Symbolleiste -> Prost Mahlzeit,
Wie meinen?
Ich bin im Moment so weit:
<html>
<head><title></title></head>
<body>
<div name="output" id="output" style="border:2px groove gray;" onload="alert('');">
<br>
</div>
</body>
<script type="text/javascript">
var outpurt=document.getElementById('output');
output.designMode='on';
output.contentEditable=true;
alert(output.designMode);
</script>
</html>
Wie kann man Bilder einfügen möglich machen?
MfG
Flo