jquery .slideToggle() horizontal alternative?

You can use the animate method:

$('#element').animate({width: 'toggle'});

http://jsfiddle.net/7ZBQa/

Leave a Comment