Menampilkan Data Json Dari Url Menggunakan Metode Ajax


Contoh kode :


<div id="result"/>

<script>
var filename = 'http://api.soundcloud.com/tracks.json?client_id=YourIdClient&q=hi&limit=1';
$.ajax({
        url: filename,
        type: "get",
        dataType: "json",
        success: function(data) { 
        $.each(data, function(i,data){      
        //alert(data.id);
        $("#result").append(data.id);
        });
        },
        error: function(e) {
            //alert(e.message);
        }
    });
</script>


Smoga bermanfaat.....
Previous
Next Post »