Ajax Jquery

Simple Ajax Jquery

by Adi Apriyanto

HTML

<!-- adyoi.blogspot.com -->

CSS

/* adyoi.blogspot.com */

JavaScript

$.ajax({
   url: "https://raw.githubusercontent.com/adyoi/Sample-Raw-Json/master/example.json" ,
   dataType: "json",
   error: function (err) {
      alert('ERROR');
   },
   success: function(data) { 
      alert(data.glossary.title);
   }
});