What is the role of slideUp() in Jquery and how to use this methodin web development?

Asked 28-Jul-2021
Viewed 138 times

1 Answer


1

If any element is open it is to us to be seen in the above order, we use it Slideup method of jQuery.
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>
OUTPUT: 
What is the role of slideUp() in Jquery and how to use this methodin web development?