Changed not firing

  •  07-27-2007, 10:04 AM

    Changed not firing

    I need to track changes in a client-side text control.
     
    When I first load a page with a CE on it and type into the editor's body, the onchanged event doesn't fire. Once I refresh the CE, it fires. This is the only code I have client-side. What other code should I have to ensure the event fires?
     
    This script is right at the bottom of the page:
     
     
      <script language="JavaScript" type="text/javascript">
      
      function CuteEditor_OnChange(editor)
      {
       document.getElementById("txtChanged").value="Y";
      }
      </script>
View Complete Thread