Reputation: 141
I'm using the tabs feature from jQuery UI and I need to reload the tab after 5 seconds. I currently have two methods of reloading the data:
When reloading the first time automatically and after clicking the reload link, the reload is not following the desired time of 5 seconds.
Example:
What options do I have?
Upvotes: 0
Views: 78
Reputation: 514
It's hard to say without looking the code, but it seems that you need cancel the first setTimeout
call before call it again using the manual action.
Can you show the code?
Upvotes: 1