Hi, please help I know its a simple question,
How can I get the HTML that is currently being edited using Javascript after my user pressed a button? I seem to only get blank value... I just want to alert(... it to screen.
Thanks in advance, Philip
How can I get the HTML that is currently being edited using Javascript after my user pressed a button? I seem to only get blank value... I just want to alert(... it to screen.
Thanks in advance, Philip
RE: How to get editing HTML using Javascript?
{
var oEditor = FCKeditorAPI.GetInstance('FCKeditor1') ;
alert(oEditor.GetXHTML());
return oEditor.GetXHTML();
}
Just use the editors api !!