Home:ALL Converter>liteAccordion with mouseover event

liteAccordion with mouseover event

Ask Time:2011-06-05T17:18:54         Author:hd.

Json Formatter

I am trying to use 'liteAccordion' jQuery plugin on my website.

This plugin works with click event,but i need it works with mouseover. Does it support mouseover event? and if yes,how can i define it?

Author:hd.,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/6242015/liteaccordion-with-mouseover-event
Sotiris :

you can edit the plugin and replace the two occurrences of .click with .mouseover in liteaccordion.jquery.js",
2011-06-05T09:59:40
Jazaret :

You can just add this line to your javascript. \n\n$('#accordion h2').mouseover(function() {\n $(this).click();\n});\n\n\nOr you can do what Sotiris advises and modify the plugin directly. It doesn't seem to have native mouseover support.",
2011-06-05T10:02:43
yy