Load JSON encoded data using jQuery.getJSON()

Using Delegate and Undelegate in jQuery

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.

Leave a Reply

Your email address will not be published. Required fields are marked *