I've written a small jQuery chatbox which loads a page in a div and refeshes every 4 seconds:
On click slide down and load page in div and refresh:
$('#toggle').click( function () {
$('#sbox').slideDown('fast');
var refreshId = setInterval(function() {
$('#shout').load('shout.php?randval='+ Math.random());
}, 4000);
return false;
});
This however I'm guessing is a bit of a resource drainer so thought how about after x minutes if no activity is detected stop refreshing but resume refreshing once there is activity again...
I found this snippet ... http://stackoverflow.com/a/7026769/1359310 ...which checks for activity (mouse movement) and looks perfect for my needs but can't seem to combine the two.
To summarize what I am after is on click load page in div and start refreshing, after x minutes if no activity stop refreshing, once activity is detected again start refreshing again.