Simple Jquery Toggle
Description:
The toggle( speed,
[callback]) method toggles displaying each of the set of matched
elements using a graceful animation and firing an optional callback after
completion.
Syntax:
Here is the simple syntax
to use this method:
selector.toggle( speed, [callback]);
|
Parameters:
Here is the description of
all the parameters used by this method:
- speed: A string
representing one of the three predefined speeds ("slow",
"normal", or "fast") or the number of milliseconds to
run the animation (e.g. 1000).
- callback: This is
optional parameter representing a function to call once the animation is
complete.
Example:
Following is a simple
example a simple showing the usage of this method:
Comments
Post a Comment