[jQuery] Re: IE6 - "Operation Aborted" - Any Ideas?

2007-10-07 Thread G[N]Urpreet Singh
Guys, What I figured was that my jq code was trying to play with the parts of the DOM which were not yet loaded (the accordion at the right bottom). To fix it, I moved that bit of code further down in my document ready function and havent the error ever again. I guess you guys are correct, the do

[jQuery] Re: IE6 - "Operation Aborted" - Any Ideas?

2007-10-04 Thread wick
I've run into this a lot in the past, in IE6, & to a lesser extent IE7, using jQuery's document.ready function. It wasn't happening consistently & I never put in the time to make a test page. I was adding a lot of functions for DOM-modification plugins (rounded corners plugin, jtip, jcarousel, et

[jQuery] Re: IE6 - "Operation Aborted" - Any Ideas?

2007-10-04 Thread Wizzud
On a quick visual inspection, on suggestion is to make sure nothing (jQuery-wise) is being called before the document is ready. You have the following inline script... $('#date-pick').calendar(); ...and should probably wrap it in the ready function...

[jQuery] Re: IE6 - "Operation Aborted" - Any Ideas?

2007-10-03 Thread kennydee
Big problems because at some times, this is js code we don't own that triggers this error (Ad server etc ...) and jquery seems to be the trigerrer of that ! Don't know how to bypass that. When our code is guilty, add a $(document).ready over make it works, but when this is not our code ... ?

[jQuery] Re: IE6 - "Operation Aborted" - Any Ideas?

2007-10-03 Thread Guy Fraser
G[N]Urpreet Singh wrote: > Once every few times the page is loaded in IE6, it just fails. It says > "Operation Aborted" and fails. Could anyone point me to why this is > happening. And this did not happen at all while the site was on my > local machine, it started when I put it up on a test ser