How do I auto reload a page if there is no activity for some minutes on the page?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
If you want to refresh the page if there is no activity then you need to figure out how to define activity. Let's say we refresh the page every minute unless someone presses a key or moves the mouse. This uses jQuery for event binding:
|
|||
|
The can be accomplished without javascript, with this metatag:
where content ="5" are the seconds that the page will wait until refreshed. But you said only if there was no activity, what kind for activity would that be? |
|||
|
Will refresh the page every 10 minutes unless resetTimeout is called. For example:
|
||||
|
|
|
I have built a complete javascript solution as well that does not require jquery. Might be able to turn it into a plugin. I use it for fluid auto refreshing but it looks like it could help you here.
|
|||
|
|