Opened 15 years ago
Closed 15 years ago
#2051 closed bug (fixed)
JSONP is always assumed
Reported by: | john | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.2.3 |
Component: | ajax | Version: | 1.2.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
$.getJSON("http://foobar.com/getdata.cgi?type=stuff", function (obj) { $("#result").append(obj.toSource()); } ); }
This should check to see if the JSONP style var=? exists somewhere, if not, pass it through to XHR and assume that the user knows what he's doing (since FF3 will have native cross domain handling).
Change History (4)
comment:1 Changed 15 years ago by
comment:2 Changed 15 years ago by
Milestone: | 1.2.2 → 1.2.3 |
---|
Try jquery-1.2.3a.js to see if it fixes your problem.
http://groups.google.com/group/jquery-dev/browse_thread/thread/c0f2a57823cd8e07/ee44344446ec766a
comment:4 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
this also leads to another problem in 1.2.2: since a script element being used to load json instead of XHR, the json is evaluated on load and nothing is passed to the callback function, thus making getJSON unusable.