On scroll and max width js
Sun Sep 24 2023 15:54:39 GMT+0000 (Coordinated Universal Time)
Saved by
@sagarmaurya19
$(document).scroll(function(){
if (window.matchMedia("(max-width: 767px)").matches){
$(".glossary-posting-right-wrapper").css({"margin-left": "","position":"","width":""});
}
else{
if($(window).scrollTop()<=553){
$(".glossary-posting-right-wrapper").css({"margin-top":$(window).scrollTop()});
}
}
});
content_copyCOPY
Comments