Can someone explain why the window size is not being recognized as greater than 1000px in this code snippet?
jQuery(document).ready(function () {
if ($(window).width() > 1000) {
jQuery(".buy-now-iframe").sticky({
topSpacing: 200
});
}
});