We have been using JSONP (http://code.google.com/p/jquery-jsonp/) to do some localhost calls to retrieve JSON objects... I have upgraded to Firefox 4 today and now the code we were using doesn't work in Firefox 4, but it still works in IE, Chrome and Safari.

With the JSONP plugin it appends a script tag with a load of stuff in it... effectively it is like XSS... So I wondered if Firefox were trying to prevent this now.

Code:

    $.jsonp({
        url: "http://localhost:2020/wsService/LocalResources/All",
        callback: "callback",
        success: function(data) {
            // some success code
        },
        complete: function(xOptions, textStatus) {
            // this code doesn't alert in firefox 4
            alert("Complete");
        },
        error: function(xOptions, textStatus) {
            // error code
        }
    });

And then it appends this string

<script id="_jqjsp1" async="" src="http://localhost:2020/wsService/LocalResources/All?_1300967068015=">

Failed to load source for: http://localhost:2020/wsService/LocalResources/All?_1300967068015=

link|improve this question
What errors do you see in the console if you run your code under Firebug, say? I think it's probably more likely that your particular code is showing some odd interaction with Firefox 4... – Matt Gibson Mar 23 '11 at 16:20
I don't get any errors. – Josh Anderson Mar 23 '11 at 16:22
@Josh Well, my blog uses a tiny bit of JSONP (it grabs a country code from a JSONP geolocator service to figure out whether to serve US or UK Amazon ads) and that's working fine in Firefox 4.0; I just tested it. Can you reduce your code down to a small example that's not working and post it? – Matt Gibson Mar 23 '11 at 16:46
well it is like this: $.jsonp({ url: "localhost:2020/wsService/LocalResources/All";, callback: "callback", success: function(data) { // do success stuff }, error: function(xOptions, textStatus) { // do error stuff } }); – Josh Anderson Mar 23 '11 at 17:26
1  
@Josh I've edited your code into your question. Do you really have that semicolon after the URL string, or is that a typo? – Matt Gibson Mar 23 '11 at 20:59
show 15 more comments
feedback

2 Answers

Use "window.alert" inside the function instead of "alert"... this did the trick in my case... Hope this helps...

link|improve this answer
thanks I will try that – Josh Anderson Apr 4 '11 at 16:20
feedback

I am also using jsonp in one of my projects and I tested it a few weeks back and it was not working. However I tested it again today and it seems to be working fine:

I tested this on Firefox 4.0, 4.0.1 on Windows and Linux with jQuery 3.1.2, 4.1.2 using jsonp: 2.1.2

Here is the code I used:

jQuery.jsonp({
   url: "http://api.twitter.com/1/statuses/user_timeline.json?include_rts=t&screen_name=twitter&rpp=20&callback=?",
   success: function(data) {
      alert("Success");
   },
   complete: function(xOptions, textStatus) {
       alert("complete");
   },
   error: function(xOptions, textStatus) {
       alert("Error");
   }
});

The only difference is that I am passing the callback at the end of the url as "callback=?" instead of defining it in the request options (not really sure if it matters).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.