HTML Editor for ASP.NET AJAX

Professional Edition
HtmlEditor IsModified Method

Returns if the modified flag is set.

Namespace: Winthusiasm.HtmlEditor

Syntax
IsModified()
Parameters
None.

Return Value
Returns true if the modified flag is set, and false otherwise.

Remarks
Use to determine if the modified flag is set.

Examples
First get a reference to the client-side editor:
var editor = $find('<%= Editor.ClientID %>');
Then use it to check the modified flag:
var modified = editor.IsModified();