HTML Editor for ASP.NET AJAX

Professional Edition
HtmlEditor SaveIfModified Method

Executes the Save method if the modified flag is set.

Namespace: Winthusiasm.HtmlEditor

Syntax
SaveIfModified()
Parameters
None.

Return Value
None.

Remarks
Calls the Save method 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 conditionally trigger a client-side save:
editor.SaveIfModified();