Hi there,
I need to get the fckeditor content by id, because I do not need to reload the page.
I have inspect the page source but have not found any solutions.
Please let me know if it possible.
Thanks all!
I need to get the fckeditor content by id, because I do not need to reload the page.
I have inspect the page source but have not found any solutions.
Please let me know if it possible.
Thanks all!

Re: How can I get the fckeditor "textarea content" by
var oEditor = FCKeditorAPI.GetInstance('full_text'); oEditor.UpdateLinkedField(); value = document.getElementById('full_text').value;Re: How can I get the fckeditor "textarea content" by
http://docs.fckeditor.net/FCKeditor_2.x ... Script_API
var oEditor = FCKeditorAPI.GetInstance('full_text'); value = oEditor.GetData();