Is it possible to detect "idle" time in JavaScript?
My primary use case probably would be to pre-fetch or preload content.
Idle time: Period of user inactivity or without any CPU usage
|
3
|
Is it possible to detect "idle" time in JavaScript? Idle time: Period of user inactivity or without any CPU usage
|
|||
|
|
|
Here is a rough jQuery implementation of tvanfosson's idea:
|
|||
|
|
|
Idle time implementation using |
||
|
|
|
|
Similar to Iconic's solution above (with jQuery)...
|
||
|
|
|
|
Javascript has no way of telling the CPU usage. This would break the sandbox javascript runs inside. Other than that, hooking the page's onmouseover and onkeydown events would probably work. You could also set use setTimeout in the onload event to schedule a function to be called after a delay.
|
||
|
|
|
|
You could probably detect inactivity on your web page using the mousemove tricks listed, but that won't tell you that the user isn't on another page in another window or tab, or that the user is in Word or Photoshop, or WOW and just isn't looking at your page at this time. Generally I'd just do the prefetch and rely on the client's multi-tasking. If you really need this functionality you do something with an activex control in windows, but it's ugly at best. |
||
|
|
|
|
Well you could attach a click or mousemove event to the document body that resets a timer. Have a function that you call at timed intervals that checks if the timer is over a specified time (like 1000 millis) and start your preloading. |
||
|
|
|
|
You could probably hack something together by detecting mouse movement on the body of the form and updating a global variable with the last movement time. You'd then need to have an interval timer running that periodically checks the last movement time and does something if it has been sufficiently long since the last mouse movement was detected. |
||||
|
|
|
Just a few thoughts, an avenue or two to explore. Is it possible to have a function run every 10 seconds, and have that check a "counter" variable? If that's possible, you can have an on mouseover for the page, can you not? If so, use the mouseover event to reset the "counter" variable. If your function is called, and the counter is above the range that you pre-determine, then do your action. Again, just some thoughts... Hope it helps. |
||
|
|