|
January 2, 2001 Netscape 6 Event Handler Specification Tips: January 2001
Yehuda Shiran, Ph.D.
|
|
Netscape 6 event model is based on the event listener. You attach an event listener with the addEventListener() method. Here is an example of a DIV element that includes a colored text in a colored box. The main function is the init() function. It computes the DIV object by getElementById(), and then defines two event listeners. The first one listens for a "mouseover" event, while the other one listens for a "mouseout" event. Here is the init() function:
Notice the action taken for each event. We call colorItTan for the "mouseover" event, and colorItYellow for the other one. Here is the full listing of the HTML and JavaScript code:
Get on the Netscape 6 browser and play with this demo.
People who read this tip also read these tips: Look for similar tips by subject: |