'detachEvent()' Example : detachEvent : Javascript Methods : JavaScript Reference examples (example source code) Organized by topic

JavaScript Reference
C++
PHP
JavaScript Reference Home »  Javascript Methods   » [  detachEvent  ]   
 



'detachEvent()' Example

<!-- 
Example revised from 

The Web Programmer's Desk Reference
by Lazaro Issi Cohen and Joseph Issi Cohen 

ISBN: 1593270119
Publisher: No Starch Press 2004
-->   
<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.  'detachEvent()' Syntax, Parameters and Note
2.  'detachEvent()' is applied to
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.