Newbie question: I'm wondering how to refresh/reload a page (or even specific div) once(!) using jQuery? Ideally in a way right after the "DOM structure" is available (cf. "onload" event) and not negatively affecting "back button" or "bookmark" functionalities. Please note: ''replace('' is not allowed due to third-party restrictions. Thanks in advance! --Pete
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
EDIT: Alright, i think i got what you're asking for, try this
If it is once, then just do
If it is periodically
So, every 5 seconds the div #div-id content will refresh. Better than refreshing the whole page. |
|||||||||||
|
|
To reload you can try this..
|
|||||||||||||
|
|
|||||
|
This is the correct syntax.
|
||||
|
|
|
You don't have jQuery refresh function because this is JS basic. Try this:
|
|||
|
|
Use this instead
|
||||
|
|
Due to the if condition the page will reload only once. |
|||
|
|
You can find complete demo example |
|||
|
|
