home / experts / javascript / column10 |
|
By now you should be familiar with the two most important event handler approaches in Internet Explorer 4.0x (HTML attributes and JavaScript properties). These approaches are important because they are also supported by Navigator 3.0x and above. That is, they are cross-browser approaches. However, Internet Explorer 4.0x also supports explicit event handler scripts. An explicit event handler script is an ordinary script that executes only when a specific event occurs for a given object. Take a look at the following script:
If you're running any version of Netscape Navigator, or version 3.0x of Microsoft Internet Explorer, the alert dialog box pops up immediately when you load the page. Nonetheless, if you're using Internet Explorer 4.0x, the script is executed only when a When dealing with a button's event handler, the script must be placed within the form, unless the button has a unique identifier:
For more information on event handler scoping for scripts, refer to Microsoft's documentation. Explicit event handler scripts are pretty useless, because they aren't supported by most browsers. Browsers that do not recognize the |
Created: December 30, 1997
Revised: December 30, 1997
URL: http://www.webreference.com/js/column10/scripts.html