Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Problem with tooltip in Advanced option › Reply To: Problem with tooltip in Advanced option
February 23, 2023 at 2:11 pm
#41516
Keymaster
You actually need more code, an event handler for the mouseout event for the tooltip buttons to remove the class names, like:
$('body').on('mouseout', '.tooltipped-s', function(){
$(this).removeClass('tooltipped tooltipped-s');
});
..or something similar. This is way beyond the scope of our support, you may need to ask a developer about this.