Forum Moderators: open
I'm currently using this method:
$.ajax({
url: 'load_last_comment.php',
cache: false,
success: function(result){
$('#all_comments').append(result);
}
}); My question is: How do I append the result to the BEGINNING of the table, instead of the end? The #all_comments is an ID reference for the table all comments are displayed in.
Thanks in advance!