jquery messing with anchor scroll code example
Example 1: scroll jquery to anchor
$('html,body').animate({ scrollTop: $("#anchor").offset().top }, 'slow');
Example 2: click anchor tag using jquery
$(document).ready(function () {
$('#about')[0].click(); //$('#about').get(0).click();
});