I would like to know how is possible to assign a css rule to an element only if current scroll position is greater than 112px..
I’ve tried this but it doesn’t work:
<script type="text/javascript">
$window.scrollTop(function(){
var a = 112;
var pos = $window.scrollTop();
if(pos > a) {
$("menu").css({
position: 'fixed'
});
}
else {
$("menu").css({
position: 'absolute',
top:'600px'
});
}
});
</script>
Try using below code
$window.scrollTopchanged to$(window).scroll$window changedto$(window)