Created
February 12, 2010 00:41
-
-
Save phatduckk/302165 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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