Using jQuery.getJSON method you can get or load JSON encoded data by an AJAX HTTP GET request. The method returns XMLHttpRequest object.
JSON stands for JavaScript Object Notation. So, this is a way of formatting the data to look at loading JSON data using an HTTP GET request (you can also use POST method).
Syntax:
$.getJSON( url, [data], [callback] )
Example of jQuery.getJSON():
$.getJSON(“ajax.js”, function(result){
$.each(result, function(i, field){
$(“p”).append(field + ” “);
});
});
Read Also:
Read jQuery reference for more.
Based on United States, Jacob Frazier is a skilled JavaScript developer with over 8 years of experience. He is passionate about change and trying new things, both professionally and personally. He loves startups and is extremely proactive.