Dynamic HTML
Prev | 1 | 2 | 3 | 4 | 5 | 6 | Next
home
Full Event Model
- Access to mouse, keyboard, focus, load, and specialized events
- Event live cycle:
- User action or event condition occurs
- The event object is instantly updated
- The event fires- actual notification in response to the event
- Event handler associated with the source elenent is called and returns
- Event bubbles to next elenent in hirearechy until window object is reached
- Final default action (if any) takes place
- Canceling event bubbling
View example code