Hello from Vermont. Newbie question here. GetHTML works fine for an alert; e.g.

Code: Select all
var field = FCKeditorAPI.GetInstance('QuestionTxt');
alert(field.GetHTML(true));

However, if I attempt to assign the output of getHTML to a JS variable, I get the error, Object doesn?t support this property or method:

Code: Select all
var field = FCKeditorAPI.GetInstance('QuestionTxt');
var value;
value = null;
value = field.getHTML(true);
alert(value);