ich habe ein script gefunden, welches ein Wort bei der Cursor position einfügt. Das Problem jedoch ist, das der Cursor nach dem Einfügen VOR dem eingefügten Wort steht, anstatt dahinter. Wie kann ich das ändern? Hier der Code:
Code:
//<![CDATA[function insertAtCursor(wo, was)
{
wo = document.getElementById(wo)
//IE
if (document.selection)
{
wo.focus()
sel = document.selection.createRange()
sel.text = was
}
//MOZILLA/NETSCAPE
else if (wo.selectionStart || wo.selectionStart == '0')
{
var startPos = wo.selectionStart
var endPos = wo.selectionEnd
wo.value = wo.value.substring(0, startPos)
+ was
+ wo.value.substring(endPos, wo.value.length)
}
else
{
wo.value += was
}
wo.focus()
} //]]>
Zuletzt bearbeitet von einem Moderator: