router
08-13-2003, 06:00 AM
Hello everybody!
I wanna to know display a message on my page 3 seconds later when a user is doing nothing (when the mouse and the cursor aren't moving).
Does it exists something like 'onclick' to do it?Maybe 'onNothig' or similiar?
Any idea?
Thanks!!
Router :)
PD: I wanna do something like that but instead 'onclik' , 'onNothing'(if it exists).
document.onclick = function() { _click();
}
function _click() {
window.setTimeout(alert("Anybody here?")' ,3);
}
I wanna to know display a message on my page 3 seconds later when a user is doing nothing (when the mouse and the cursor aren't moving).
Does it exists something like 'onclick' to do it?Maybe 'onNothig' or similiar?
Any idea?
Thanks!!
Router :)
PD: I wanna do something like that but instead 'onclik' , 'onNothing'(if it exists).
document.onclick = function() { _click();
}
function _click() {
window.setTimeout(alert("Anybody here?")' ,3);
}