Team:Imperial/Resources/JS:subNav

From 2014.igem.org

Revision as of 01:10, 18 October 2014 by HChughtai (Talk | contribs)

/**

************************************************************
*************** THIS IS THE NAVIGATION CODE ****************
************************************************************
**/

$(document).ready(function () {

   $(window).bind('scroll', function () {
       var navHeight = 180;
       if ($(window).scrollTop() > navHeight) {
           $('#navWrap').addClass('fixed');
       } else {
           $('#navWrap').removeClass('fixed');
       }
   });

});