Autorefresh using oneTime() and Load()

Autorefresh using oneTime() and Load()

Hello,
 
I am using jquery to accomplish an autorefresh.  Everything is working correcly however over time the browser continues to grab more memory every refresh.  Am I going about this the wrong way?
 
function gologs(timer)
{
 $(document).oneTime(timer, "logs", function() { updatelogs(); });
}


 
function updatelogs() {
 
 $("#listlogs").load("/page.htm", function() { gologs(${refresh} * 1000); });
}