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");
});

No Comments

rssComments RSS   transmitTrackBack Identifier URI

No comments. Be the first.

addLeave a comment