Implementing a Dropdown Menu with jQuery

Edited

I need to create a dropdown menu that shows/hides its content when clicked. The menu should slide down smoothly when displayed and slide up when hidden

Asked 1/31/2024 9:06:33 PM

1 Answers

unliked

1

To implement the dropdown menu functionality, you can use jQuery's slideToggle() method to smoothly show/hide the menu content when the dropdown button is clicked. This method animates the height of the matched elements.

$(document).ready(function() {
    $('#dropdownToggle').click(function() {
        $('#dropdownContent').slideToggle('fast');
    });
});

HTML:

<button id="dropdownToggle">Toggle Dropdown</button>
<div id="dropdownContent">
    <ul>
        <li>Item 1</li>
        <li>Item 2</li>
        <li>Item 3</li>
    </ul>
</div>

Edited

Answered 1/31/2024 9:08:11 PM

Add Your Answer


Add New