'detachEvent()' Syntax, Parameters and Note : detachEvent « Javascript Methods « JavaScript Reference

'detachEvent()' Syntax, Parameters and Note

Note:

Detach attached event handler function from its event. 
This is the opposite of the attachEvent() method.
    
Syntax:
    
window.detachEvent(param1, param2)
document.all.elementID.detachEvent(param1, param2)

Parameters:
    param1   Required; the name of the event.
    param2   Required; the name of the function.

    

      
      








Related examples in the same category

1.'detachEvent()' Example
2.'detachEvent()' is applied to