I've downloaded a wonderful template and I made some changes to it.
The problem is when I click on some links it automatically scrolls up.
How can I prevent it from scrolling up?
I've downloaded a wonderful template and I made some changes to it.
The problem is when I click on some links it automatically scrolls up.
How can I prevent it from scrolling up?
The only reason why a page would scroll up on a click of a link is because of the anchors... Please check your links' href, and make sure they do not contain a # . Usually, downloadable templates use placeholder links and put just the # inside the href so it acts like a link but points to the top of the page.
You can event.preventDefault on every anchor that has hash # as href:
// Remove after testing
$("[href='#']").click(function( e ){
e.preventDefault();
});