I have a website which I would like to auto refresh ONLY if user is not using it for a specific time (ie.180 sec).Is there a way to auto refresh HTML only if there has been no activity on a page?
Thank you!
|
I have a website which I would like to auto refresh ONLY if user is not using it for a specific time (ie.180 sec).Is there a way to auto refresh HTML only if there has been no activity on a page? Thank you!
| |||
feedback
|
|
Two approaches: 1. Use a once-a-second timer and a "timeout" value.You probably want to wrap this up in an object:
Then start it on page load:
And ping it every time you see "activity":
So for instance, you might do this:
2. Use a timer you reset every time there's "activity".This is less ongoing work (we don't have something happening every second), but more work when you flag that activity has happened. Set up a timer to do the refresh:
...and then cancel and reschedule any time you see whatever you consider to be "activity":
You can wrap this up in a function:
Then, again, ping it on every activity. But this is a lot more work than I'd put in a mousemove handler, hence solution #1 above. | ||||
|
feedback
|
|
you could declare a variable | |||
|
feedback
|
|
You can use onblur and onfocus on body element to see if there is a kind of activity on your page. | |||
|
feedback
|
| |||
|
feedback
|