[Solved] How to make accordion to expand on hover not on click? [closed]


5th example in the jQuery UI Accordion documentation: Open on mouseover

$( "#accordion" ).accordion({
    event: "mouseover"
});

You can attach any click events you wish to using the .click() or .on('click') methods in plain jQuery. Please research before asking questions like this.

0

solved How to make accordion to expand on hover not on click? [closed]