Skip to content

Instantly share code, notes, and snippets.

@advorak
Created September 4, 2011 18:03
Show Gist options
  • Save advorak/1193237 to your computer and use it in GitHub Desktop.
Save advorak/1193237 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$('a.pastEvents').click(function() {
$('ul#pastEvents').empty();
var html = '';
$.getJSON('/events/past_events.json', {}, function(data) {
$(data).each(function(entryIndex, entry) {
html += 'andy';
});
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment