You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
299 B
12 lines
299 B
// JavaScript Document
|
|
jQuery.scrollLeft = function(b){
|
|
var top = $(b).offset().top;
|
|
$(window).scroll(function(){
|
|
var scrollTop = $(document).scrollTop();
|
|
if(scrollTop>top){
|
|
$(b).css({"position":"fixed","top":0});
|
|
}else{
|
|
$(b).css({"position":"absolute","top":0});
|
|
}
|
|
});
|
|
}
|