Is there a mechanism i can use to force page reload every \'n\' minutes? I can\'t modify the page code itself, \"refresh\" request should be issued from outside of the page
Try this : this method will reload the page after every 1 minute
setInterval(function () { window.location.reload(); }, 60000);