/ Published in: JavaScript
URL: http://www.josephgiuffrida.com/
Expand |
Embed | Plain Text
$(document).ready(function() { var theLoc = $('#leftNav').position().top; $(window).scroll(function() { if(theLoc >= $(document).scrollTop()) { if($('#leftNav').hasClass('fixed')) { $('#leftNav').removeClass('fixed'); } } else { if(!$('#leftNav').hasClass('fixed')) { $('#leftNav').addClass('fixed'); } } }); });
Comments
Subscribe to comments
You need to login to post a comment.

test