/*Hàm này để luôn luôn load khi cuộn trang*/
jQuery(window).scroll(function() {
if (jQuery(window).scrollTop() >= 800) /*Nếu đến đúng 800px thì thực hiện*/
{
jQuery('#id-sticky-1').css({"position": "fixed", "top": "50px", "z-index": "999", "width" : "100%"});
jQuery('#id-sticky-2').css({"position": "fixed", "top": "50px", "z-index": "999", "width" : "100%"});
}
else /*Nếu không thì trả về*/
{
jQuery('#id-sticky-1').css({"position": "relative", "top": "0px", "z-index": "999" ,"width" : "100%"});
jQuery('#id-sticky-1').css({"position": "relative", "top": "0px", "z-index": "999" ,"width" : "100%"});
}
});
EmoticonEmoticon