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...
<script type="text/javascript">
$('#date-pick').calendar();
</script>
...and should probably wrap it in the ready function...
<script type="text/javascript">
$(document).ready(function(){
$('#date-pick').calendar();
});
</script>
This *may* solve your problem.
G[N]Urpreet Singh wrote:
>
> Hi,
> A strange thing is happening on a project that I am working on. The page
> has
> some JQuery code like a slide down form, an accordion (which I have coded
> by
> hand) and some other stuff.
>
> 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 server for client review.
>
> Here is a link : http://www.codesutra.net/visionasia/
>
> Will really appreciate some help.
>
> Thanks,
> Gurpreet
>
>
> --
> Gurpreet Singh
>
>
--
View this message in context:
http://www.nabble.com/IE6---%22Operation-Aborted%22---Any-Ideas--tf4561014s27240.html#a13034710
Sent from the jQuery General Discussion mailing list archive at Nabble.com.