jmccole83
2/2/2018 - 4:55 PM

Stop clicking on fake links

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();
});