Return to Snippet

Revision: 52768
at November 1, 2011 15:08 by jackkeller


Initial Code
$(window).scroll(function(){
    if  ($(window).scrollTop() >= 229){ //looking for the window to scroll to 229px in this example
         $('#navigation_table').css({position:'fixed',top:0,left:'50%',margin:'0 0 0 -487.5px'});
    } else {
         $('#navigation_table').css({position:'relative'});
        }
});

Initial URL


Initial Description


Initial Title
Change Div Positioning to Fixed at a Specific Scroll Point - Some code from mjnestor - Forrst

Initial Tags


Initial Language
JavaScript