Following this line of code:
var ckedit = CKEDITOR.instances._journal_blogContent;
I want to get the innerhtml in the textarea for that editor. Using fckeditor it used to be:
ckedit.EditorDocument.body.innerHTML
What is the corresponding line of code I should use for CKEditor?
var ckedit = CKEDITOR.instances._journal_blogContent;
I want to get the innerhtml in the textarea for that editor. Using fckeditor it used to be:
ckedit.EditorDocument.body.innerHTML
What is the corresponding line of code I should use for CKEditor?