Hello,
i have a function, that gives me a selected String in a Textareas. CODE :
function moveSelectedWord()
{
var selectedString = ' ';
if (window.getSelection) { // recent Mozilla versions
var selectedString = window.getSelection();
}
else if (document.all) { // MSIE 4+
document.getElementById('TheText').focus();
var selectedString = document.selection.createRange();
var TheWord = selectedString.text;
}
else if (document.getSelection){ //old Mozilla versions
var selectedString = document.getSelection();
}
alert(TheWord);
}
i've made from that textarea a tiny_mce editor and the function dosn't run correctly naymore. Has anybody an idea, where this error from ?



Reply With Quote
Bookmarks