jQuery hide() Method
jQuery hide() Method
The jQuery hide()
method hides the matched elements.
Note: With no parameters, the .hide() method is the simplest way to hide an element.
Example
<!DOCTYPE html>
<html lang="en-US">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<h1>jQuery hide() Method</h1>
<button id="myHide">Hide</button>
<button id="myShow">Show</button>
<script>
$(document).ready(function(){
$("#myHide").click(function(){
$("p").hide();
});
$("#myShow").click(function(){
$("p").show();
});
});
</script>
</body>
</html>
Syntax
$(selector).hide(speed, easing, callback);
Parameter Values
Value | Type | Explanation |
---|
speed | Optional | Specifies the speed of the hide effect. Default value is 400 milliseconds. Possible values are |
easing | Optional | Specifies the easing function to use for the transition. Default value is "swing" Possible values are |
callback | Optional | Specifies a function to be called once the hide() medthod is completed. |
hide() with Speed
In the following example, we will specify the speed of the hide effect to 2000ms (2 seconds).
Example
<!DOCTYPE html>
<html lang="en-US">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<h1>jQuery hide() Method</h1>
<button id="myHide">Hide</button>
<button id="myShow">Show</button>
<script>
$(document).ready(function(){
$("#myHide").click(function(){
$("p").hide(2000);
});
$("#myShow").click(function(){
$("p").show();
});
});
</script>
</body>
</html>
hide() with Easing
In the following example, we will specify the easing function for hide()
method to linear.
Example
<!DOCTYPE html>
<html lang="en-US">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<h1>jQuery hide() Method</h1>
<button id="myHide">Hide</button>
<button id="myShow">Show</button>
<script>
$(document).ready(function(){
$("#myHide").click(function(){
$("p").hide(2000, "linear");
});
$("#myShow").click(function(){
$("p").show();
});
});
</script>
</body>
</html>
hide() with Callback
In the following example, we will call a function (myFunction) once the hide effect is finished.
Example
<!DOCTYPE html>
<html lang="en-US">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<h1>jQuery hide() Method</h1>
<button id="myHide">Hide</button>
<button id="myShow">Show</button>
<script>
$(document).ready(function(){
$("#myHide").click(function(){
$("p").hide(2000, "linear", function(){
alert("show() method completed");
});
});
$("#myShow").click(function(){
$("p").show();
});
});
</script>
</body>
</html>
Reminder
Hi Developers, we almost covered 99.5% of jQuery Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in jQuery.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.
Share this Page
Meet the Author