I have a very simple question (I guess!)
I used to work with Scriptaculous to add DOM effects to my pages
Now that I also use jQuery, it seems to be a conflict between Scriptaculous and jQuery
How can I translate this :
<a href="#" onclick="Effect.toggle('header', 'blind', { duration: 1.0 }); return false;">link</a>
to a jQuery similar effect? (SlideToggle() maybe?)
<a href="#" onclick="???; return false;">link</a>
Thank you!
Assuming you have a element with id as header. The parameter 100 is the milliseconds for the toggle transition. You can also call slideToggle().