All pastes #2106012 Raw Edit

Untitled

public text v1 · immutable
#2106012 ·published 2012-01-25 11:55 UTC
rendered paste body
$(document).ready(function(){
	
	$.post('data.php', { id : '0'},
		function(output) {
			
			$('section-portfolio').html(output).show();
		});
	
});

$.getJSON('data.php', function(data) {
  var items = [];

  $.each(data, function(key, val) {
  	
    items.push('<li id="' + key + '">' + val['date'] + '</li>');
  });

  $('<ul/>', {
    'class': 'portfolio-list',
    html: items.join('')
  }).appendTo('#section-portfolio');
});