'fireEvent()' Example : fireEvent « Javascript Methods « JavaScript Reference

'fireEvent()' Example

    
<html>
<body>
<button onmouseover="this.fireEvent('onclick')" 
        onclick="alert('Hello');">
Fire onclick event
</button>
</body>
</html>

    
      
      








Related examples in the same category

1.'fireEvent()' Syntax, Parameters and Note
2.'fireEvent()' is applied to