position:fixed; cross browser solution using jQuery

This is an easy way to accomplish position:fixed; across all browsers using jQuery. Works in IE6. $(window).scroll(function() { $(‘#elementName’).css(‘top’, $(this).scrollTop() + “px”); });