hallo selfHTMLer,
ich habe eine frage zu dhtml im explorer. es geht um den designmode eines iframes. mein problem: wenn ich den u.a. code ausführe und im iframe "enter" drücke, macht er gleich zwei umbrüche. weiss jemand wie man das abstellen kann?
vielen dank
sigfried
==== SNIP =====================================================
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>textEdit</title>
<script>
function init() {
text.document.designMode="On"
}
</script>
</head>
<body onload="init()">
<iframe id="text" name="text" marginwidth="0" marginheight="0" hspace="0" vspace="0" valign="top" scrolling="yes" frameborder="1" style="width: 250px; height: 100px"></iframe>
</body>
</html>
==== SNIP =====================================================