I made a page to sample data in real time, and I need to update in real time after 3 minutes.
I tried this code:
$(function() {
setTimeout(function(){ location.reload(); }, 180000);
});
No results.
I do not know if I need to use (document)
to perform the verification on the certainty of the entire document loaded, but within the ready
fault I thought it would solve.