Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
How to Set Sliding up and Down Animation to Drop-Down in Bootstrap using JQuery
WhatsApp
Abhijeet Singh
Jan 28
2015
2.8
k
0
0
//Sliding down animation to drop-down
$(
'ul.dropdown'
).on(
'show.bs.dropdown'
,
function
(e) {
$(
this
).find(
'.dropdown-menu'
).first().stop(
true
,
true
).slideDown();
});
//Sliding up animation to dropd-down
$(
'ul.dropdown'
).on(
'hide.bs.dropdown'
,
function
(e) {
$(
this
).find(
'.dropdown-menu'
).first().stop(
true
,
true
).slideUp();
});
dropdown animation
sliding up
sliding down.
Up Next
How to Set Sliding up and Down Animation to Drop-Down in Bootstrap using JQuery