I have application that brings response via Ajax and creates 5-20 new jQuery click listeners on each refresh. Both IE and mozilla browsers seem to be slowing down with usage. Can this slow down browser performance significantly. Can listeners be "released"?
|
Listeners set using 5-20 listeners sounds a few too many - consider binding less handlers if possible as older browsers will crack under the pressure far quicker than newer ones. |
|||||
|
|
To add to what Andy said about live. You should probably be using delegate or live on the elements you are adding to the page. It sounds like you are not binding unique events to the new elements (on each refresh) but rather reusing functions. In jQuery 1.4.2 use can use delegate() like this:
This would only need to be called once and every new element with the "selector" class added to the "#container" will have their click event bound |
|||
|
|
|
You can unbind a listener using
and remove
|
|||
|
|
