Slick-slider not working after liviwire call

I have a lot of jQuery libraries installed on the page, after calling livewire, all my libraries stop working. I understand the reason in the ajax request and redrawing of DOM elements. How do I solve my problem?

wire:ignore should work for this situation :slight_smile:

See: ’ Ignoring DOM-changes (using wire:ignore )’

1 Like

wire:ignore ,

yes it is working. but we are using Auth:: prosses in the slick slider. This method not enough. Other solutions need.

How can we do?

without looking at the code, it’s hard, but I got swiper working with Livewire reinitializing it whenever the DOM changes. The same approach might work for you.
You can find an example here.