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);
}