Detach Event : Event « Document « JavaScript DHTML






Detach Event

 
    
<html>
<body>
<button id="myButton">Button</button>
<button onclick="function3();">Apply an event handler "Button"</button>
<button onclick="function2();">Detach</button>
<script language="JavaScript">
    function function3() {
        document.all.myButton.attachEvent("onclick", function1)
    }
    function function1() {
        document.bgColor = 'red';
    }
    function function2() {
        document.bgColor = 'white'; 
        document.all.myButton.detachEvent('onclick', function1);
    }
</script>
</body>
</html>

    
      
        
  








Related examples in the same category

1.Set Capture
2.Release Capture
3.Attach an Event to element
4.Fire an Event
5.Add event handler listener to document