The scriptaculous wiki has a demo (http://github.com/madrobby/scriptaculous/wikis/effect-slidedown) that shows the SlideDown effect in use. However I need to have the same link to slide down if a certain DIV is hidden and SlideUp if that DIV is showing.

How do I achieve this?

Thanks.

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

Use Effect.toggle.

Effect.toggle('element_id', 'slide');
link|improve this answer
feedback

Wrap it in a function, call the function instead.

function slideMe(myDiv) {

	if(Element.visible(myDiv)) {
	//slide up

	}

	else {

	//slide down

	}
}
link|improve this answer
This is a perfectly valid way of doing this. Why vote it down? Voting down is for WRONG answers. – Diodeus Oct 29 '08 at 19:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.