jQuery(document).ready(function () {
setInterval(refreshPartial, 30000)
});
This will start executing function 3 second after page is loaded.
But what if I want it to execute right away after the page is loaded and keep executing 3 seconds after that?
How can I change this??
That wasn’t the hardest one…