I wish to get the html source instead of the value of the text entered. For example, if someone enters in HI in bold, I want to get <b>HI</b> from the value property. Can this be done?
Sun, 10/15/2006 - 08:17
#1
RE: Get the HTML
I am using this like so:
// get the editor instance
var oEditor = FCKeditorAPI.GetInstance('textAreaId') ;
// get the html version of the text
alert(oEditor.GetXHTML());