Javascript : How to get JSON data from another website with JQuery or Ajax ?
A very common task for developing front-end. I used to write this a lot but some how forgotten about it today after couple of years. So....
Problem :
How to get JSON data from another website with JQuery or Ajax ?
Solution :
first example:
var json = 'http://anotherwebsite.com/that/returnsjsonresult/';
$.getJSON(json, function(result){
$.ajax({
type:'GET',
url:json,
dataType:'JSONP',
data: result,
success: function(msg){
// do stuff with the msg
console.log('json result returned');
}
});
});
another example :
var json = 'http://anotherwebsite.com/that/returnsjsonresult/';
$.getJSON( json, function( result ) {
console.log( "JSON Data: " + result.person[2].name );
});
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+26.2k Golang : Read, Write(Create) and Delete Cookie example
+7k PHP : How to parse ElasticSearch JSON ?
+4.4k Fix yum-complete-transaction error
+6.9k Golang : How to check if input string is a word?
+4.3k Python : Print unicode escape characters and string
+6.6k Golang : Qt splash screen with delay example
+5.6k Golang : Pat multiplexer routing example
+11.8k Golang : ROT47 (Caesar cipher by 47 characters) example
+15.7k Golang : Find smallest number in array
+11.2k Golang : Qt progress dialog example
+11.7k Golang : How to get a user home directory path?