Re: How can i detect changed text in CE on the clientside?

  •  11-14-2008, 4:20 AM

    Re: How can i detect changed text in CE on the clientside?

    Ah-ha, Success!
     
    Yes, your code change worked, still not sure why my code didn't but it helped me zero in on another issue. In IE7 you don't seem to be able to directly write to the onclick event of an object instead you need something like this:
     

      <input id="clicker" type="button" value="Click Me" />

      <script language="javascript" type="text/javascript">
        document.getElementById('clicker').attachEvent('onclick', sayHello);
        function sayHello() {
          alert('hi');
        }
      </script>
     
     
    Hope this helps anyone else who comes across this one.
     
    Thanks again for your help Adam.
     
    Craig
View Complete Thread