bigspotteddog / ScrollToFixed

This plugin is used to fix elements on the page (top, bottom, anywhere); however, it still allows the element to continue to move left or right with the horizontal scroll.
http://bigspotteddog.github.com/ScrollToFixed/
MIT License
1.81k stars 533 forks source link

Not compatible with jQuery $(window).width() #205

Closed ghost closed 8 years ago

ghost commented 8 years ago

I tried to limit function execution using jQuery $(window).width() condition for small devices, resulting in to stop the function at all:

$(window).resize(function(){
    if ($(window).width() >= 768){  
        // ScrollToFixed
    }   
});

Any help with issue is much appreciated.

ghost commented 8 years ago

Sorry, I missed minWidth option included, now it works fine :+1: