Fusion Builder Custom Element

User
<script>
jQuery(document).ready(function($) {
                    $('.owl-carousel').each(function() {
                        var $this = $(this);
                        $this.owlCarousel({
                            items: parseInt($this.data('items')),
                            autoplay: $this.data('autoplay') === 'true',
                            autoplayTimeout: parseInt($this.data('autoplay-speed')),
                            loop: true,
                            margin: 10,
                            nav: true,
                        });
                    });
                });
</script>
Assistant
If the custom element is not showing in Fusion Builder, it could be due to several reasons. Here

Leave a Comment

Your email address will not be published. Required fields are marked *