Skip to content

Instantly share code, notes, and snippets.

@nathancahill
Created July 24, 2012 09:02
Show Gist options
  • Save nathancahill/3168964 to your computer and use it in GitHub Desktop.
Save nathancahill/3168964 to your computer and use it in GitHub Desktop.
Hacker News comments load via Ajax
$(document).ready(function() {
$.ajax({
url: 'http://hncomments.nathancahill.com/comments/link-id/html/',
success: function(data) {
$('#hncomments').append(data);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment