This is related to my previous question, however I feel it had nothing todo with "onblur in firefox" so I thought it best to start a new topic.
Ok, basicly I want an event to fire everytime the user moves the mouse at all.
I currently have:
Which is all very well, except one problem. I have an iframe in my document. As soon as you scroll over the iframe. it stops processing the onmousemove.
Is there anyway around this? or do I need to find another way?
thanks, Josh
Ok, basicly I want an event to fire everytime the user moves the mouse at all.
I currently have:
Code:
window.addEventListener? document.addEventListener('mousemove',handler,false) :document.attachEvent('onmousemove',handler);
Is there anyway around this? or do I need to find another way?
thanks, Josh
Comment