Is it possible to change bxslider mode on small screen sizes from horizontal to vertical using jquery ?

    1 answer 1

    You can simply track the width of the container (as css actually does), and when reaching the width for mobile devices (width <800 px it seems), trigger the redraw. Method .on("resize",function(){}) tyk

     slider.reloadSlider({ mode: 'vertical', auto: true, pause: 1000, speed: 500 }); 

    But before doing so, I advise you to start an object with a configuration in order to substitute it. The way to reload itself is described here tyk