Skip to main content

Posts

Showing posts with the label Javascript

Blogger API Callback

Tabel Struktur   Blogger API Callback Posts API Callback key encoding feed 1 author[] email $t gd$image height rel src width name $t uri $t 2 category[] term 3 entry[] author[] email $t gd$image height rel src width name $t uri $t category[] scheme term ...

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/