tags:

views:

110

answers:

2

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.

+5  A: 

Sounds like you want an Accordion

marcgg
+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