Skip to content

Instantly share code, notes, and snippets.

@phatduckk
Created February 12, 2010 00:41
Show Gist options
  • Save phatduckk/302165 to your computer and use it in GitHub Desktop.
Save phatduckk/302165 to your computer and use it in GitHub Desktop.
<!-- this whole page opens in facebox -->
<div id="#comments">
<!-- comments go here -->
<div id="pagination-stuff">
<a href="/band/comments?page=1">1</a>
<a href="/band/comments?page=2">2</a>
<a href="/band/comments?page=2">3</a>
</div>
</div>
<!-- end page in facebox -->
<!-- in profile.php put this JS -->
<script>
$("#pagination-stuff A").live("click", function() {
$.get($(this).attr('href'), function(data) {
$('#comments').html(data);
return false
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment