blob: 9fe269afb6144e99922e1f2fc6d7463ab27756a4 [file] [log] [blame]
<script type="text/javascript">
$(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>