Links on BxSlider not working in Google Chrome but working in all other browsers

coder picture coder · Mar 29, 2019 · Viewed 7.8k times · Source

The error message on clicking is

jquery.js:4388 [Violation] Added non-passive event listener to a scroll-blocking 'touchmove' event. Consider marking event handler as 'passive' to make the page more responsive. See https://www.chromestatus.com/feature/5745543795965952

I can open the link with right-click in a new tap. The more important left-click is not working.

On all other browsers the links are working fine

Please help me

Answer

Elymentree picture Elymentree · Apr 1, 2019

Author of the plugin is aware of this bug. You can track the progress here bxSlider issues

Quick workaround while waiting for the patch is to set touchEnabled to false.

$('.your-slider').bxSlider({
        touchEnabled: false
    });