Javascript examples for jQuery:Json
Invalid javascript/JSONP response from API
<html> <head> <script src="https://code.jquery.com/jquery-1.9.1.min.js"></script> </head> <body> <script> jQuery.get('https://api.your server.com/aaa.json?client_id=9d', function(data) { document.body.innerText = JSON.stringify(data); });/*from w w w. j a va 2s . c o m*/ </script> </body> </html>