The slideToggle() Method in jQuery is used to show the hidden elements or hide the visible elements respectively i.e. it toggles between the slideUp() and slideDown() methods.
html
Output:
- slideDown() is run when the element is hidden.
- slideUp() is run when the element is visible.
$(selector).slideToggle()( speed, easing, callback )Parameters: This method accepts three parameter as mentioned above and described below:
- Speed: It is an optional parameter and used to specify the speed of the fading effect. The default value of speed is 400 millisecond. The possible value of speed are:
- milliseconds
- "slow"
- "fast"
- easing: It is an optional parameter and used to specify the speed of element to different points of animation. The default value of easing is "swing". The possible value of easing are:
- "swing"
- "linear"
- callback: It is optional parameter. The callback function is executed after slideToggle() method is completed.
<!DOCTYPE html>
<html>
<head>
<title>
jQuery slideToggle() Method
</title>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<!-- Script to illustrates slideToggle() method -->
<script>
$(document).ready(function() {
$("button").click(function() {
$("h1").slideToggle();
});
});
</script>
</head>
<body>
<h1 style="color:green">
GeeksforGeeks
</h1>
<button>
Click on button to hide/show content
</button>
</body>
</html>
- Before click on the button:

- After single click on the button:

- After double click on the button:
