Today, I noticed that Opera is no longer working at all with AJAX
commands. Firefox still does, but all of a sudden, Opera is having
issues. Strange, I'm still using all the same stuff, except maybe I
added another jQuery UI widget or two... agh.!

On Aug 25, 7:44 am, AaronNGray <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I am getting bugs on using jQuery.ajax() on FF and Opera. FF is not
> responding at all, and Opera is giving an error, where IE and Safari
> are fine.
>
> Here's a link to example code showing the bug :-
>
>    http://www.aarongray.org/jQuery/ajax-bug/jQuery-AJAX-test.html
>
> It should put up an 'alert()' box.
>
> And here's the code :-
>
> <html>
> <head>
>     <script src="jquery-1.2.6.js"></script>
> </head>
> <body>
> <script>
>
> jQuery.ajax({
>     url: "http://www.aarongray.org/jQuery/ajax-bug/example.xml";,
>     type: "GET",
>     dataType: "xml",
>     success: function()
>     {
>         alert( "success")
>     },
>     error: function()
>     {
>         alert( "error")
>     },
>     complete: function()
>     {
>         alert( "complete")
>     }
>
> });
>
> </script>
> </body>
> </html>
>
> Regards,
>
> Aaron

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery Development" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to