[jQuery] Re: Stop pending AJAX processes?

2007-04-06 Thread Kristinn Sigmundsson
I think I've seen something like this for stopping ajax calls: var ajaxcall = $.ajax() ajaxcall.abort(); As I said, I _think_ I've seen it, could be worth testing if it works. As for calling all the ajax calls, maybe a .each() might do the work? and btw, I noticed that you are making the

[jQuery] Re: Stop pending AJAX processes?

2007-04-06 Thread Kristinn Sigmundsson
*To:* jquery-en@googlegroups.com *Subject:* [jQuery] Re: Stop pending AJAX processes? Andy, If you want all the information to just be there, then include it in the original HTML and just hide it. The core benefit you gain by loading content on demand is you only send the data that's necessary. If you

[jQuery] Re: Stop pending AJAX processes?

2007-04-06 Thread Andy Matthews
Hrm...not a bad idea. I'll look into that. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kristinn Sigmundsson Sent: Friday, April 06, 2007 4:24 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Stop pending AJAX processes? hmm how about then making