blob: befe3818e4382895f1b90c16378e05c74caefa98 [file] [log] [blame]
<script type="text/javascript">
<![CDATA[
$(document).ready(function() {
// load up the meme data
$.getJSON('ajax/test.json', function(data) {
var items = [];
$.each(data, function(key, val) {
items.push('<li id="' + key + '">' + val + '</li>');
});
$('<ul/>', {
'class': 'my-new-list',
html: items.join('')
}).appendTo('body');
});
}); ]]>
</script>