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
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
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...
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 ... ?
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
5 matches
Mail list logo