Team:UCLondon/Templates/Header

From 2012e.igem.org

(Difference between revisions)
Line 102: Line 102:
    
    
         $(window).scroll(function (event) {
         $(window).scroll(function (event) {
-
              // let's do something funky
 
             var y = $(this).scrollTop();
             var y = $(this).scrollTop();
    
    
-
            // whether that's below the form
 
             if (y >= top) {
             if (y >= top) {
                 // if so, ad the fixed class
                 // if so, ad the fixed class
-
                 $('#comment').addClass('fixed');
+
                 $('#toc').addClass('fixed');
             } else {
             } else {
-
                // otherwise remove it
+
                 $('#toc').removeClass('fixed');
-
                 $('#comment').removeClass('fixed');
+
             }
             }
     });
     });

Revision as of 06:41, 16 September 2012

{{{1}}}