Hi,
ich habe folgenden Code:
Jetzt will ich an der Stelle //Cursor Position herausfinden
Die Aktuelle Cursor Position im Iframe herausfinden. Wie mache ich das?
ich habe folgenden Code:
Code:
<html>
<head><TITLE>Website erstellen</TITLE>
<script language="JavaScript1.3" type="text/javascript">
function init(){
document.getElementById("editor").contentDocument.designMode = "on";
}
function insertElement(){
var editor = document.getElementById("editor");
//Cursor Position herausfinden
}
</script>
</head>
<body onload="init()">
<div><button onclick="insertElement()">F</button></div>
<iframe id="editor" height="500px" width="500px" >
</iframe>
</body>
</html>
Jetzt will ich an der Stelle //Cursor Position herausfinden
Die Aktuelle Cursor Position im Iframe herausfinden. Wie mache ich das?