Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
2  
How do you define IDLE TIME? – Itay Moav -Malimovka Mar 20 '09 at 19:17

14 Answers

Here is a simple script using JQuery that handles mousemove and keypress. If the time expires, the page reload.

<script type="text/javascript">
idleTime = 0;
$(document).ready(function () {
    //Increment the idle time counter every minute.
    var idleInterval = setInterval("timerIncrement()", 60000); // 1 minute

    //Zero the idle timer on mouse movement.
    $(this).mousemove(function (e) {
        idleTime = 0;
    });
    $(this).keypress(function (e) {
        idleTime = 0;
    });
})
function timerIncrement() {
    idleTime = idleTime + 1;
    if (idleTime > 19) { // 20 minutes
        window.location.reload();
    }
}
</script>
share|improve this answer
1  
+1. Nice one. Nice and simple. – AndyUK Jan 9 at 10:20
You're missing a semicolon after the $(document).ready(function() body. Also, in the call to setInterval, it won't work with quotes around the function name and you don't need the parentheses after it. Just: setInterval(timerIncrement, 60000) – Jesse Roper Apr 5 at 17:30
Agreed. Very simple and effective implementation. Also allows for quick addition of extra interval based function calls. Perfect for an auto logout script with notification – Foo_Chow Apr 18 at 20:55
up vote 36 down vote accepted

Idle time implementation using
YUI (http://www.nczonline.net/blog/2009/06/02/detecting-if-the-user-is-idle-with-javascript-and-yui-3/ )
jQuery(http://paulirish.com/2009/jquery-idletimer-plugin/)

share|improve this answer
I've had problems using JQuery one (in Chrome it would sometimes fire idle event even though I moved mouse/used keyboard) – kape123 May 2 '11 at 14:59
(Came across this discussion when reading up on the topic myself). Both these approaches detect user inactivity, not network inactivity - it's the later which is realy relevant to preloading/prefetching. Both the preload and prefetch tags for the link attribute cause the content to be loaded when the network is idle and rendering has completed, this is not exposed as an event to javascript - further no browsers implement onload events for these elements, and javascript loaded by such a mechanism is not executed. – symcbean Dec 21 '12 at 12:27

Here is a rough jQuery implementation of tvanfosson's idea:

$(document).ready(function(){

   idleTime = 0;

   //Increment the idle time counter every second.
   var idleInterval = setInterval(timerIncrement(), 1000);

   function timerIncrement()
   {
     idleTime++;
     if (idleTime > 2)
     {
       doPreload();
     }
   }

   //Zero the idle timer on mouse movement.
   $(this).mousemove(function(e){
      idleTime = 0;
   });

   function doPreload()
   {
     //Preload images, etc.
   }

})
share|improve this answer
Easier to use the setTimeout/clearTimeout below. – Tracker1 Mar 20 '09 at 21:12
6  
This solution doesn't consider keyboard events. – Daniel Silveira Mar 1 '10 at 12:43
4  
Never pass setInterval a string! Just give a function as a variable! – Eric Oct 7 '11 at 14:08
This helped me today, thanks – jammypeach Jan 12 '12 at 14:50
This won't actually work because passing a string to setInterval() evaluates the expression in the global scope and thus it won't find the timerIncrement() function that is inside the .ready handler function. This is yet another reason to NEVER pass strings to setInterval(). Just pass an actual function reference and you won't have this problem because they are evaluated in the current scope. – jfriend00 Jan 26 at 5:22
show 1 more comment

Similar to Iconic's solution above (with jQuery)...

//when the document is loaded
$(function(){

  //create an event handler for the mousemove
  var preLoadTimer;
  $(this).mousemove(function(e){
    //clear prior timeout, if any
    window.clearTimeout(preLoadTimer);

    //create new timeout.
    preLoadTimer = window.setTimeout(doPreLoad, 2000);
  });

});
share|improve this answer

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.

share|improve this answer
Important to note that the script will only be able to detect motion on the body of the page, not all user input. I don't think there's a way to get CPU or process info from javascript. – Dave Swersky Mar 20 '09 at 19:47
I took the liberty of implementing your idea in jQuery. – Peter J Mar 20 '09 at 21:14

Without using jQuery, only JavaScript:

var inactivityTime = function () {
    var t;
    window.onload = resetTimer;
    document.onmousemove = resetTimer;
    document.onkeypress = resetTimer;

    function logout() {
        alert("You are now logged out.")
        //location.href = 'logout.php'
    }

    function resetTimer() {
        clearTimeout(t);
        t = setTimeout(logout, 3000)
        // 1000 milisec = 1 sec
    }
};

Credits: http://forums.devshed.com/showpost.php?p=1965136&postcount=10

share|improve this answer

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/

share|improve this answer

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.

share|improve this answer

For Prototype: http://github.com/saizai/prototype_idle_timer

share|improve this answer
cool, thank you for this. – Subimage Jun 26 '12 at 21:24

I have created a small lib that does this a year ago:

https://github.com/shawnmclean/Idle.js

Description:

Tiny javascript library to report activity of user in the browser (away, idle, not looking at webpage, in a different tab, etc). that is independent of any other javascript libraries such as jquery.

Visual Studio users can get it from NuGet by: PM> Install-Package Idle.js

share|improve this answer

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.

share|improve this answer

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.

share|improve this answer

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.

<script>
// Timeout in seconds
var timeout = 10; // 10 seconds

// You don't have to change anything below this line, except maybe
// the alert('Welcome back!') :-)
// ----------------------------------------------------------------
var pos = '', prevpos = '', timer = 0, interval = timeout / 5 * 1000;
timeout = timeout * 1000 - interval;
function mouseHasMoved(e){
    document.onmousemove = null;
    prevpos = pos;
    pos = e.pageX + '+' + e.pageY;
    if(timer > timeout){
        timer = 0;
        alert('Welcome back!');
    }
}
setInterval(function(){
    if(pos == prevpos){
        timer += interval;
    }else{
        timer = 0;
        prevpos = pos;
    }
    document.onmousemove = function(e){
        mouseHasMoved(e);
    }
}, interval);
</script>
share|improve this answer

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.

// Call aFunction after 1 second
window.setTimeout(aFunction, 1000);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.