• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

DOM level 2 event listener question(question in detail)

 
Ranch Hand
Posts: 31
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi there,
i have read DOM level 2 spesification and seen event listner(UI and mouse)in Professional XML 2nd Edition. UI contains DOMFocusIn,DOMFocusOut and DOMActivate type.Mouse event contains click,mousedown , mouseup, mouseover, mousemove and mouseout type.
I can not understand how come we can use this UI and mouse events different type with DOM. If i have one DOM tree then when mouseover or focuslost type event fire? If possible than answer me with example.
In waiting of reply.
 
Author
Posts: 58
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The best example is HTML.
HTML implements a Document Object Model for its content.
When the user passes their mouse over an image, a "onMouseOver" event fires, and if there are any JavaScript functions "listening" for that event, the code will run.
The HTML event model is similar to the event model proposed by DOM2.
Scott
MCSD, SCJP, IBM-XML
 
Ronak Patel
Ranch Hand
Posts: 31
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks scott.
If anybody have coded example of this then please put up on this post.
With Regards.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic