In this elementor tutorial, you’ll learn how to change image on accordion mouse click for free.
Get the Code
<script>
jQuery(function() {
const img = "";
jQuery("#elementor-tab-title-").click(function(){
jQuery(".toggle-img img").attr('srcset',img);
jQuery(".toggle-img img").attr('src',img);
});
});
</script>