blob: 2d9c7c12436ad88ed6a76d396cff75782a85fcf6 [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>