jquery - slideDown multiple times -


I have a click event handler where I have a hidden div I have achieved this to slide down but instead of using the toggle it has been slashed on an additional click , I would like to slide it again.

So, slide down instead of slide, I want to slide it down and then slide down again.

I'm currently using it, as long as I do not manage to achieve desired effect / animation:

  $ (document) .ready (function ) {$ (".whereami"). Click (function () {$ (". Currentpage"). Slide Toggle ("Slow");});});    

OK I have read ur questions such as 5 times ((and :: Problem solved);

Animate (". Current page") ({'top': '+ = 100px'}, 600); // adds +100 to each click;); // and 600 for the duration of the animation

Comments