Attach an Event to element : Event : Document JAVASCRIPT DHTML TUTORIALS


JAVASCRIPT DHTML TUTORIALS » Document » Event »

 

Attach an Event to element



    
<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>

    
      
      



-

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

JAVASCRIPT DHTML TUTORIALS

 Navioo Document
» Event