codeulike
codeulike

Reputation: 23064

jQuery UI effect() method - what are the options for each effect?

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

Answers (4)

lfrodrigues
lfrodrigues

Reputation: 305

try this link:

http://api.jqueryui.com/effect/

It has the documentation you are looking for.

Upvotes: 0

Greg Franko
Greg Franko

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

jay.lee
jay.lee

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

ladi
ladi

Reputation: 1528

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

Upvotes: 0

Related Questions