How do I get the current contents of the form without having to post the form to another page?
I thought it was
somefckeditor.Value
but that just gives me the pre populated info I need to get it on the fly...
Any help would be greatly appreciated!
Thanks!!!
Rob
I thought it was
somefckeditor.Value
but that just gives me the pre populated info I need to get it on the fly...
Any help would be greatly appreciated!
Thanks!!!
Rob
Re: Getting value of the form through javascript?
FCKeditor = 'the instance'
function getRTEText()
{
var oEditorHTML = FCKeditorAPI.GetInstance('FCKeditor').GetHTML();
return oEditorHTML;
}