Help with toggle show/hide an element left.
As the title states, I really need help with toggling an element left. I need it to start off hidden, then be shown when you click an element. This is what I have so far, but it's not working...
-
$(document).ready(function(){
$("#clicky").click(function(){
$("#slide").animate({width:'toggle'},1000);
});
});
I really really need help with this one..... thanks in advance
