I experience a slow memory leak in IE and Firefox using a combination of ASP.NET AJAX and jQuery. My scenario is very similar to the one described here: Preventing AJAX memory leaks , with the exception of using jquery and asp.net AJAX, not the prototype: I have a webpage that displays data in UpdatePanel which is updated every 60 seconds using a timer. in the AJAX javascript pageLoad function, which is called for each partial postback, I bind the events because they get lost in the asp.net partial postback:
function pageLoad(sender, args) { $("#item").unbind(); $("#item").hover( function() {
therefore it is called every 60 seconds. Could this be causing a memory leak?
source share