Re: [jquery-dev] Performance issues using $.ajax async

2009-11-13 Thread John Resig
It's because Internet Explorer has serious memory leak issues with using the traditional model. Perhaps we could use conditional comments in this case, since it's not something that we can feature detect. --John On Fri, Nov 13, 2009 at 5:24 AM, 1Berto wrote: > Hello, > > I am using JQuery on a

[jquery-dev] Performance issues using $.ajax async

2009-11-13 Thread 1Berto
Hello, I am using JQuery on a embedded system which use webkit as browser, i detect that jquery for asynchronously ajax calls use polling: 3620: var ival = setInterval(onreadystatechange, 13); instead of: xhr.onreadystatechange = onreadystatechange; for my scenary this has performance issues,