user2793663
user2793663

Reputation:

Reload page only once

How can I reload my page only once adding to this code:

setInterval(function() {
    $("#ReloadPage").load(location.href+" #ReloadPage>*","");
}, 500); // seconds to wait, miliseconds

The code is set to reload the page every time. How can I reload my page only once?

Upvotes: 0

Views: 267

Answers (1)

muratgu
muratgu

Reputation: 7311

Replace setInterval with setTimeout.

Upvotes: 1

Related Questions