Work on Asp.net 2.0 C# in web.In my site i have three div .Each div contain several element ,When i mouse hover a div then it expand on vertically ,initially all div are in Collapsible.How to write this mouse hover event. How to set all div content in collapsible . I want Accordion but the Accordion header takes place vertically not horizontally.
+1
A:
You can use a jquery Accordion.
To make the sections expand and collapse on mouse over, use this:
$('.selector').accordion({ event: 'mouseover' });
jbochi
2009-12-17 09:37:51