I'm just a beginner coder, so maybe this problem will make you smile, but I just can't find any solution.
I have a link:
<div class="comments"><a href="#" onclick="get_comments('.$row['post_id'].')">'.$comments_no.' comments</a></div>
Which clicked triggers a function:
function get_comments(id) {
x = "#cf"+id;
y = "#comments"+id;
$(x).toggle(100);
var dataString = id;
$(".loading").ajaxStart(function () {
$(this).show();
});
$(".loading").ajaxStop(function () {
$(this).hide();
});
$.ajax({
type: 'POST',
url: 'load_comments.php',
data: {'dataString':dataString},
cache: false,
success: function(data){
$(y).html(data);
}
});
return false;
};
Everything works fine, until I actually click a link... Every time I click a link, it takes me to the top of a page. Can anybody advise me how to fix this problem?
You need to return false from the event handler