Bhupi
Bhupi

Reputation: 2969

Memory Leaks in Browser

Please tell me how to find out the memory leak in browser and what is the best way to solve the problem. Is there any guideline for writing javascript to avoid memory leak?

And also if you can tell me some problem which you experienced related to memory leak and how did you debug and find out the solution would provide a great understanding to me.

Thanks

Upvotes: 1

Views: 480

Answers (2)

Garett
Garett

Reputation: 16838

For Internet Explorer you can try sIEve or the JavaScript Memory Leak Detector from Microsoft (The link to the documentation seems to be broken). In Firefox there is the Leak Monitor Add-on. There is also a list of tools for Firefox here.

UPDATE:

There is a new version of the Microsoft memory leak detector at the link below.

Link

Upvotes: 3

Romain Hippeau
Romain Hippeau

Reputation: 24375

Look at this IBM article on Memory leak patterns in JavaScript

Upvotes: 4

Related Questions