I am using the editor1.IsDirty() for this.
function CheckForDirty() {
var editor1 = document.getElementById("<%= ceEditor1.ClientID %>");
if (editor1.IsDirty()) {
alert("text has been changed");
}
}
Is there a reason I should not be using this function and do external comparisons instead?
The Analytical Group