Hi friends
when i click the anchor tag that hide the div, i get bump to top of page although the div gets hidden. How do i make browser stay at same place when div gets hidden by clicking that link ? here is the code
< a id="Student" href="#">Click here to hide</a>
$('#Student').click(function(){
$('#divHide').hide('slow');
});