jQuery | toggle() Method
The toggle() method is used to check the visibility of selected elements to toggle between hide() and show() for the selected elements.
- show() is run when the element is hidden.
- hide() is run when the element is visible.
Syntax:
$(selector).toggle(speed, easing, callback)
Parameters: It has three optional parameters:
- speed: It is used to specify the speed of the toggle effect. It can be in terms of milliseconds, slow or fast.
- easing: It is used to specify the speed of the element at the different points of animation.
- callback: The function to be immediately called after the toggle effect.
Below is the example to show the toggle() method:
<!DOCTYPE html> < html > < head > < script src = </ script > < script > $(document).ready(function() { $("button").click(function() { $("#gfg").toggle(); }); }); </ script > < style > #gfg { color: green; border: 5px solid black; width: 200px; text-align: center; } </ style > </ style > </ head > < body > < div id = "gfg" >GeeksforGeeks</ div > < button >Click to hide() and show() the above div</ button > </ body > </ html > |
chevron_right
filter_none
Output:
Before clicking on the button:
After clicking on the button:
After clicking on the button again:
Recommended Posts:
- How to create slide left and right toggle effect using jQuery?
- jQuery | Hide/Show, Toggle and Fading methods with Examples
- jQuery | add() method with Example
- jQuery | die() Method
- jQuery | off() Method
- jQuery | before() Method
- jQuery | is() Method
- jQuery | css() Method
- jQuery | get() Method
- jQuery | text() Method
- jQuery | append() Method
- jQuery | slideDown() Method
- jQuery | unbind() Method
- jQuery | slideToggle() Method
- jQuery | ajaxError() Method
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.