Im using this code to make my elementor accordion open on hover:
jQuery(document).ready(function($){
$(".elementor-tab-content").fadeOut(0);
$(".elementor-tab-title").hover(function() {
$(".elementor-tab-content").not($(this).next()).slideUp('slow');
$(this).next().slideToggle(400);
});
});
However it works only to tittle, when i move mouse to content it's closing. I would like to add feature to keep accordion open when pointer is on content either.