$(function(){ $('a[href^=#]' + 'a:not([href *= "inline-wrap1"])' + 'a:not([href*="inline-wrap2"])' + 'a:not([href*="inline-wrap3"])' + 'a:not([href*="inline-wrap4"])' + 'a:not([href*="inline-wrap5"])' + 'a:not([href*="inline-wrap6"])' + 'a:not([href*="inline-wrap7"])' + 'a:not([href*="inline-wrap8"])' + 'a:not([href*="inline-wrap9"])' + 'a:not([href*="inline-wrap10"])' + 'a:not([href*="inline-wrap11"])').click(function(){ var speed = 700; var href= $(this).attr("href"); var target = $(href == "#" || href == "" ? 'html' : href); var position = target.offset().top-58; $("html, body").animate({scrollTop:position}, speed, "swing"); return false; }); });