79805154

Date: 2025-10-30 19:40:29
Score: 0.5
Natty:
Report link

This is what you need

function load() {
//Your function here
}

$(function() {
load(); //run on load
});

var loaded = setInterval(_run, 600000); //repeat every 10 mins
function _run() {
load();
clearInterval(run); //clear interval to recycle in the next 10 mins (not necessary);
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Onyedikachi Oko - Dexter