0
What is the role of slideUp() in Jquery and how to use this methodin web development?
What is the role of slideUp() in Jquery and how to use this methodin web development?
Syntax:
$(selector).slideUp(speed);
$(selector).slideUp(speed, callback);
Speed and callback is an optional parameter. Speed specifies the delay of showing elements these possible vales are 'slow', 'fast' and milliseconds. Callback function to be called after completion of slideUp()
<!DOCTYPE html>
<html>
<head>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js'></script>
<script>
$(document).ready(function () {
$('#flip').click(function () {
$('#panel').slideUp('1500');
});
});
</script>
<style>
#flip {
padding: 10px;
text-align: center;
background-color:red;
background-color: #e5eecc;
border: solid 1px green;
}
#panel {
padding: 50px;
text-align: center;
background-color:yellow;
background-color: #e5eecc;
border: solid 1px green;
}
</style>
</head>
<body>
<div id='flip'>Click to slide up </div>
<div id='panel'>This is slide up panel </div>
</body>
</html>
