Skip to main content

Posts

Showing posts with the label JQuery

Load data JSON with JQuery Ajax

Ada beberapa metode untuk menampilkan data JSON dengan jQuery salah satunya dengan Ajax. <script type="javascript/text> $.ajax({    url: "http://ip.jsontest.com/" ,    dataType: "json",    error: function () {         alert('error');     } ,success: function(data) {        alert(data.ip);     } }); </script> Demo contoh : http://jsfiddle.net/adyoi/eVuE5/