How to fix javascript and raphaeljs memory leak?
- by luc
Hello all,
I have the following code using RapahelJs running in IE. This code cause a memory leak and I don't know what is wrong. Does anybody can help me and give some advices in the usage of raphaeljs and memory leaks.
for (i=0; i<2000; i++) {
var r = paper.rect(100, 100, 30, 30);
r.remove();
r = null;
}
Thanks in advance