Hi,
I have a MVC app and using JQuery.
I have anchor that I setup like this
<a href="#" id="addcomment">Add Comment</a>
then when the anchor is clicked I do this
$('#addcomment').click(function() {
$('#divComments').slideDown(2000);
});
Problem is when the anchor is clicked the browser scrolls to top of window immediately the link is clicked and then the div scrolls
How do I stop that happening??
Malcolm