http://api.jquery.com/jquery.getjson/

$.getJSON( "ajax/test.json", function( data ) {
var items = [];
$.each( data, function( key, val ) {
items.push( "

  • " + val + "
  • " );
    });

    $( "