Team:UNIK Copenhagen/js/scripts.html

From 2014.igem.org



$(document).ready(function () { $('.left-menu').find('li:last').remove(); $('#bodyContent>p:first').hide(); // $('#top-section').remove(); document.styleSheets[0].disabled=true;

$(window).scroll(function() { if ($(".navbar").offset().top > 50) { $(".navbar-fixed-top").addClass("top-nav-collapse"); } else { $(".navbar-fixed-top").removeClass("top-nav-collapse"); } });

//jQuery for page scrolling feature - requires jQuery Easing plugin $(function() { $('.page-scroll a').bind('click', function(event) { var $anchor = $(this); $('html, body').stop().animate({ scrollTop: $($anchor.attr('href')).offset().top }, 1500, 'easeInOutExpo'); event.preventDefault(); }); });

});