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
|
Is it possible to detect "idle" time in JavaScript? Idle time: Period of user inactivity or without any CPU usage |
|||||
|
|
Here is a simple script using JQuery that handles mousemove and keypress. If the time expires, the page reload.
|
|||||||||
|
|
Idle time implementation using |
|||||
|
|
Here is a rough jQuery implementation of tvanfosson's idea:
|
|||||||||||||||
|
|
Similar to Iconic's solution above (with jQuery)...
|
|||
|
|
|
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. |
|||||
|
|
Without using jQuery, only JavaScript:
Credits: http://forums.devshed.com/showpost.php?p=1965136&postcount=10 |
|||
|
|
|
here's a plugin that listens for keypresses too and has multiple options to hook your functions into, eg. onIdle, onTimeout etc. http://www.erichynds.com/jquery/a-new-and-improved-jquery-idle-timeout-plugin/ |
|||
|
|
|
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. |
|||
|
|
|
For Prototype: http://github.com/saizai/prototype_idle_timer |
|||
|
|
|
I have created a small lib that does this a year ago: https://github.com/shawnmclean/Idle.js Description:
Visual Studio users can get it from NuGet by: |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
For other users with the same problem. Here is a function i just made up. It does NOT run on every mouse movement the user makes, or clears a timer every time the mouse moves.
|
|||
|
|
|
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.
|
|||
|
|