tags:

views:

18609

answers:

3

I would like to have a div go from collapsed to expanded (and vice versa), but do so from right to left. Most everything I see out there is always left to right.

+1  A: 

I guess you are looking for an horizontal accordion. Take a look at these for a start:

yoavf
+13  A: 
$("#slide").animate({width:'toggle'},350);
JQGeek
+15  A: 

Here is a great tutorial to slide elements in different directions.

Chatu