jQuery(document).ready(function($){ $('.scroll-to-order').on('click', function(e){ e.preventDefault(); var target = $($(this).attr('href')); if( target.length ) { $('html, body').animate({ scrollTop: target.offset().top - 50 }, 600); } }); });