var target = ''; if(target!="") { $(document).ready(function() { if($("#"+target)) { var pos = $("#"+target).offset(); var scrollpos = pos.top - 70; //$(document).scrollTop(scrollpos); $("html, body").animate({scrollTop: scrollpos}, 900); } }); } $(document).ready(function() { $("a[href^='#']").click(function(e) { var href = $(this).attr("href"); if($(href)) { e.preventDefault(); var pos = $(href).offset(); var scrollpos = pos.top - 70; //$(document).scrollTop(scrollpos); $("html, body").animate({scrollTop: scrollpos}, 900); } }) })