Opened 14 years ago
Last modified 12 years ago
#3703 closed bug
getJSON JSONP is not working in Opera 9.52 — at Initial Version
Reported by: | delf | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.3 |
Component: | core | Version: | 1.2.6 |
Keywords: | jsonp, opera | Cc: | |
Blocked by: | Blocking: |
Description
this example from page http://docs.jquery.com/Ajax/jQuery.getJSON#urldatacallback
$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&tagmode=any&format=json&jsoncallback=?",
function(data){
$.each(data.items, function(i,item){
$("<img/>").attr("src", item.media.m).appendTo("#images"); if ( i == 4 ) return false;
});
});
is not working in Opera 9.5
Note: See
TracTickets for help on using
tickets.