Hi all,
I have 2 div tags out of which, in one textarea is constructed. I am using fckeditor as the editor for this text area. Here is what i do:
1. In the div-1 i just display the text while div-2 display is set to hide but this has the textarea with fckeditor.
2. When user double clicks on the text in div-1, javascipt sets the display for div-1 to none, and div-2 to block, which brings up the text area with fckeditor.
Everything works fine in IE, but in Firefox the text is frozen. I am not able to edit text in text area.
Did anyone come across this issue?? Any help is appreciated.
-V
I have 2 div tags out of which, in one textarea is constructed. I am using fckeditor as the editor for this text area. Here is what i do:
1. In the div-1 i just display the text while div-2 display is set to hide but this has the textarea with fckeditor.
2. When user double clicks on the text in div-1, javascipt sets the display for div-1 to none, and div-2 to block, which brings up the text area with fckeditor.
Everything works fine in IE, but in Firefox the text is frozen. I am not able to edit text in text area.
Did anyone come across this issue?? Any help is appreciated.
-V
RE: textarea frozen in firefox
Below is the partial javascript:
window.onload = function() { document.getElementById('edit').style.display = 'none'; document.getElementById('text').style.display = 'block';
}
function makeedit() { document.getElementById('edit').style.display = 'block'; document.getElementById('text').style.display = 'none';
}
Following is the HTML:
<td align="left">
<div id="text" onmouseover="changecolor()" onmouseout="nocolor()" ondblclick="makeedit()">
</div>
<div id="edit">
</div>
</td>
-V
RE: textarea frozen in firefox
RE: textarea frozen in firefox
RE: textarea frozen in firefox
RE: textarea frozen in firefox
RE: textarea frozen in firefox - a solution
Hi everybody,
see my solution :
http://sourceforge.net/forum/message.php?msg_id=3817328
(don't click on it but copy and paste all the address)