Reputation: 23064
jQuery UI has an effect()
method which is demonstrated at: http://jqueryui.com/demos/effect/
It shows how you can specify various effects such as 'blind', 'fold', etc. For each effect you can also pass in an options
hash, but I can't find a list of the available options anywhere. What are they?
Upvotes: 6
Views: 9711
Reputation: 305
try this link:
http://api.jqueryui.com/effect/
It has the documentation you are looking for.
Upvotes: 0
Reputation: 1770
You can find the jqueryui effect options here. Just click on each effect and scroll to the bottom where the arguments are listed.
http://docs.jquery.com/UI/Effects/
Upvotes: 0
Reputation: 19837
I hate trying to find what I need on the jQuery site. Google always seems to give me what I want though. I think these are the pages you're looking for:
http://docs.jquery.com/UI/Effects
Upvotes: 8