Add the below file to your main.js file to stop any link with '#' as it's href attribute from performing it's default action.
// stop dummy links $('a[href="#"]').click(function(e){ e.preventDefault(); });