I am facing a problem with javascript and browser (Chrome) memory utilization.

There is timer (setTimeout) in my script, which is check location from browser. I have noticed that there is gradual increase in memory utilization (in task manger) by this tab which result in max memory among all tabs after some time and eventually page freezes and crashes.

Is there any way or some JS using which I can free memory after some time?

solution :

Before :

function recalculateDistance() {
    getLocation();
    getDistance();
    setTimeout("recalculateDistance()", 10000);
}

After :

var timer = null;

function recalculateDistance() {
        clearTimeout(timer);
        getLocation();
        getDistance();
        timer = setTimeout("recalculateDistance()", 10000);
}
link|improve this question

14% accept rate
I think the problem lies inside the code you're starting in setTimeout(). Could you post some code? – Chris Feb 6 at 10:47
feedback

1 Answer

Post the code, as suggested.

There is clearTimeout() for, like the name says, clearing timeouts. This could help you?

And in addition, if you're doing a "timer", I'd suggest using setInterval() instead of setTimeout()

link|improve this answer
thanks got solution of the problem – Pawan Feb 7 at 3:57
If this answer was any help, I'd appreciate upvoting and approving it :) – zvona Feb 7 at 7:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.