I have a java Script function that i want to call whenever mouse moves so whats the way to call it in java script. Thanks
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Well, you didn't really provide an element onto which you want to attach the handler, but here's how to do it with the body element:
|
|||
|
|
|
You have to have an html element that will fire the event. For instance
If you want it to happen all over the page I believe that putting the event on the body tag will work but I am not sure. Here is a reference for the event http://www.w3schools.com/jsref/event_onmousemove.asp |
|||
|
|
|
Samuel and Salty both provide a bad way of attaching event listeners! Separate your presentation from the application, please!
Thanks to Dustin Diaz for event handling functions - or use your favourite library. |
|||
|
|