/*$('a[href*=\\#]').on('click', function(event){ event.preventDefault(); $('html,body').animate({ /*scrollTop: $(this.hash).offset().top scrollTop: $( $.attr(this, 'href') ).offset().top }, 1500); }); */ $(document).on('click', 'a[href*=\\#]', function(event){ event.preventDefault(); $('html, body').animate({ scrollTop: $( $.attr(this, 'href') ).offset().top }, 2000); }); /* var $root = $('html, body'); $('a').click(function() { $root.animate({ scrollTop: $( $.attr(this, 'href') ).offset().top }, 2500); return false; }); */ /*function scrollToAnchor(aid){ var aTag = $("a[name='"+ aid +"']"); $('html,body').animate({scrollTop: aTag.offset().top},'slow'); } $("#link").click(function() { scrollToAnchor('id3'); });*/