When viewing on mobile, the #main-categories div seems to be jumping instead of smoothly sticking to the top. What could be causing this behavior?
Here is the code snippet I have:
var s = $("#main-categories");
var pos = s.position();
$(window).scroll(function() {
var windowpos = $(window).scrollTop();
if (windowpos >= pos.top) {
s.addClass("stick");
} else {
s.removeClass("stick");
}
});
Sample jsfiddle: https://jsfiddle.net/o1rrwwp0/
Thank you!