over 9 years ago
Welcome to findnerd, today we are going to discuss on slideToggle() method in jQuery.
Firstly let know what use of slideToggle() method ?
The jQuery slideToggle() method toggles between the slideDown() and slideUp() methods.
syntex of slideToggle() method
There are tow optional parametr in slideToggle() method
1-speed:-It can take values: "slow", "fast", or milliseconds.
2-callback:- This parameter is a function to be executed after the sliding completes.
You can take reference of bellow example:
- <!DOCTYPE html>
- <html>
- <head>
- <!-- here call the jquery library -->
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
- <script>
- $(document).ready(function(){
- $("#stable").click(function(){
- $("#move").slideToggle("slow");//here call slideToggle() and pass paramenter to execute
- });
- });
- </script>
- <style>
- #move, #stable {
- /*here write css of text and background color*/
- padding: 10px;
- text-align: center;
- width:220px;
- background-color: #7FFFD4;
- border: solid 1px #c3c3c3;
- }
- #move {
- /*define padding of move id*/
- width:220px;
- padding: 10px;
- display: none;
- }
- </style>
- </head>
- <body>
- <div id="stable">Click here to down or up</div>
- <div id="move">Hello it is working</div>
- </body>
- </html>
<!DOCTYPE html> <html> <head> <!-- here call the jquery library --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script> $(document).ready(function(){ $("#stable").click(function(){ $("#move").slideToggle("slow");//here call slideToggle() and pass paramenter to execute }); }); </script> <style> #move, #stable { /*here write css of text and background color*/ padding: 10px; text-align: center; width:220px; background-color: #7FFFD4; border: solid 1px #c3c3c3; } #move { /*define padding of move id*/ width:220px; padding: 10px; display: none; } </style> </head> <body> <div id="stable">Click here to down or up</div> <div id="move">Hello it is working</div> </body> </html>
Can you help out the community by solving one of the following Javascript problems?
Do activity (Answer, Blog) > Earn Rep Points > Improve Rank > Get more opportunities to work and get paid!
For more topics, questions and answers, please visit the Tech Q&A page.
0 Comment(s)