Jump to content

Tiny_mce


alim

Recommended Posts

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 ?

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...