json - JQuery getJSON callback not executing -


it's been while since i've worked front-end, , seem have forgotten all. cannot call bing api work, or . . .

 $( document ).ready( function() {      $.getjson( 'http://api.search.live.net/json.aspx?appid=**my app id**6&query=sushi&sources=web', function( data ) {          alert ( 'bam!' );      } );  } ); 

i've looked @ other questions haven't found works. error log shows nothing. ready function executing, tested that, getjson callback never executes.

is possible bing api returning malformed json?

you need jsonp-response cross-domain-requests. take @ this: bing search api using jsonp not working, invalid label


Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -