02 Mar
Posted by: admin in: javascript
Hello from Vermont. Newbie question here. GetHTML works fine for an alert; e.g.
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:
var field = FCKeditorAPI.GetInstance('QuestionTxt');
var value;
value = null;
value = field.getHTML(true);
alert(value);
Statistics