JQuery onclick jumps to top of page
i had an issue with jquery code where i have a html link doing specific tasks for onclick event. Since the appear on bottom of my page, when i click on the link the browser jumps to top of the page every time i click.
<a href="#" onclick="dofunct()">click me</a>
This is really very frustrating as everytime i click a link, the browser jumps to top of page. After a long search, i fixed the problem by replacing # with javascript void function.
<a href="javascript:void(0);" onclick="dofunc()">click me</a>
It neatly solved my jump problem!