tags:

views:

50

answers:

2

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?

A: 

I suppose there are no options for effects as of now.

ladi
There are definitely options - the documentation shows where you would plug them in. But there is no list of what the options are.
codeulike
+2  A: 

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

jay.lee