how to disable pagepilling.js behavior?

829 Views Asked by At

I am using this jquery plugin . I would like to disable this behavior on mobile devices. How to do it?

1

There are 1 best solutions below

0
On BEST ANSWER

You can use MatchMedia to load the plugin only when the viewport reaches a certain size.

    if (matchMedia('only screen and (min-width: 480px)').matches) {
      // enable plugin
    }