Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

Tagged with
0 votes
2 answers
88 views

jQuery infinite slideUp and slideDown without clicking

I have a title that is in the h3 tag. My code works using slideUp but slideDown looks so bad. I want the slideDown animations smooth like in slideUp. Basically, slideDown from the last array to the ...
John Mark's user avatar
2 votes
0 answers
188 views

Accordion animation does not work for child elements

I'm struggling with animated accordion for my site. Second level of my accordion does not have animation and is not visible. It happens only on the second level of my accordion. This animation is from ...
Jakub Czeszejko-Sochacki's user avatar
1 vote
1 answer
903 views

How to slow down dropdown box by CSS or jQuery

I have built a dropdown button,but have no idea how to slow the the dropping process: Html: <div class="dropdown"> <button onclick="myFunction()" class="dropbtn"&...
William's user avatar
  • 3,990
0 votes
0 answers
50 views

SlideUp/SlideDown dropdown value

I would like some assistance with JavaScript. I have the following dropdown: All the fields in the drop down are hard coded values with set ID fields, I would like to know if it would be possible to ...
Montie's user avatar
  • 19
0 votes
1 answer
316 views

Slide down and up function problem with flex: 1

$(".div3Btn").click(function() { $(".div2").show("slide", { direction: "up" }, 5000); }); .div1 { display: flex; height: 100%; flex-direction: column; background-color: #...
test test's user avatar
1 vote
1 answer
463 views

Dropdown menu - slideToggle challenge

Following is my code $(document).ready(function(){ $('.submenu').hide(); $('.menu').click(function(event){ event.preventDefault(); $(this).children('.submenu').slideToggle(1000); ...
jeff's user avatar
  • 1,010
1 vote
1 answer
80 views

slideUp() slideDown() doesn't work properly

$(document).ready(function(){ $('.outer').click(function () { $('.inner').slideUp(); /*alert("I BIMS");*/ }); }); * { margin: 0; padding: 0; -webkit-box-sizing: border-box;...
Johnny's user avatar
  • 146
1 vote
3 answers
2k views

Alert is not working second time when clicking on button

I am using bootstrap version so I have created a slide down menu same like below example. button not working second time <div class="alert alert-success" id="success-alert"> <button type="...
Keerthi Reddy Yeruva's user avatar
0 votes
2 answers
221 views

jQuery slide down div - disappears when click on callback

I have a bit of a problem. Have done some slide down in to div of a calendar, work nice, but after I click on the arrow to change the month, whole calendar disappears. And I can't open the calendar ...
Krzysiek's user avatar
4 votes
1 answer
14k views

Uncaught TypeError: $(...).find(...).slideDown/slideUp is not a function [duplicate]

I have a simple image gallery where the figcaption is hidden on each image. Here is the HTML: <figure> <img src="gallery/reef2.jpg" width="400" height="285" alt="Another beautiful example ...
Brittany Danielle Smith's user avatar
0 votes
1 answer
74 views

jQuery firing parent functions before children (slideUp and slideDown)

In short, I have a 2 main links (Private Car and Commercial Vehicle) each with a specific class attached to their anchor tags. The same class names are used on the li tags of a second sublink ul to ...
Haret's user avatar
  • 72
0 votes
2 answers
723 views

jQuery SlideDown / SlideUp | "FAQ" | Opened

My title doesn't mean anything i guess, but it's complicated to name my problem. So, i did a section in my html "faq" and when someone click on a question, the answer appaer with a slideDown. If we ...
MaxBresil's user avatar
0 votes
0 answers
43 views

reveal divs (with position:relative, in a vertical menu) from bottom to top

(I've tried to be synthetic as possible in the thread's title) So, basically, I have a vertical menu with buttons. When you click a button, a div shows up with jQuery's slideDown(), moving away what ...
ddp's user avatar
  • 1
0 votes
1 answer
578 views

how to make slide up default open with jquery script?

I found this script on stackoverflow, and really helped me. I have tried to make it default open (default slide up), without eliminating slide down. But I did not succeed. Can anyone help me for ...
Abdullah's user avatar
0 votes
1 answer
23 views

Element won't slideDown() on certain width viewport

I'm trying to achieve a footer similar to what https://www.gucci.com/ has, where it becomes an accordion on below 768px and becomes normal block grid on 768px and above. My issue is that every-time ...
Gervin Sean Miranda's user avatar

15 30 50 per page
1
2 3 4 5
11