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

All Questions

Tagged with
0 votes
3 answers
1k views

.slideDown() submenu effect wont push down main li underneath it

After I messed around with creating a slideDown submenu for my navigation bar, I was able to finally finish the effect that I wanted. but when I plugged in the finished code to my main code (since I ...
Jgoodwyn's user avatar
  • 152
0 votes
0 answers
85 views

Closing a slidedown on click

Demonstrating almost total ignorance but here goes: I've got a simple function using slideDown to show a hidden ul when you hover over a parent li. It works great. But I need the ul to hide itself ...
Martin's user avatar
  • 233
0 votes
1 answer
157 views

slideDown Jquery CSS set up? [closed]

Okay, so I have a menu that I want to slide down from underneath another menu. I'm not sure I'm setting up the jQuery correctly. I'll post an image link of the design. navigation set up design What ...
Alex Howell's user avatar
1 vote
0 answers
596 views

snap page when vertical scrolling to the next section

Hi I know there's a few other posts on this topic, but none of them seem to have a clear solid answer. I'm trying to recreate the effect on this website using jquery: http://beoplay.com/Support ...
Bryan Willis's user avatar
  • 3,632
2 votes
1 answer
2k views

Stopping slidedown submenu from sliding up when hovering over submenu

I have the following script which handles the sliding down a submenu: $('#nav li #bottom').hover(function() { $(this).closest('#nav li').find('#sub_nav').slideDown("slow"); }, function() { $(...
Nick's user avatar
  • 4,432
2 votes
3 answers
758 views

Slideup effect on sub menu only works if mouse leaves the div very slowly

I have the following script to handle the sliding up and down of a subnavigation menu: $j('body').ready(function() { $j('.box').hover(function() { $j(this).find('.sub-menu').slideDown(500)...
Nick's user avatar
  • 4,432
0 votes
2 answers
186 views

Hover function on nav item not working

I have the following hover script that is supposed to handle the sliding down and up of sub menus in my navigation bar: $j('body').ready(function() { $j('.menu-item').hover(function() { $...
Nick's user avatar
  • 4,432
2 votes
2 answers
252 views

Unstable jQuery Navigation

There is an issue with my jQuery navigation. It hasn't got the usual setup of a navigation (ul > li > ul etc). I've got a jsfiddle right here: http://jsfiddle.net/RMRGH/2/ If its more handy to place ...
TwisterStudios's user avatar
0 votes
3 answers
1k views

jquery vertical nav - slideUp slideDown

i use this html structure: <div id="products"> <ul> <li class="selected"><a href="#">Item 1</a> <ul> <li><a ...
KBlack's user avatar
  • 45
0 votes
2 answers
2k views

Trying to create a JQuery menu with a submenu that slides up on hover, and slides down when mouse exits

I've found someone with a tutorial showing what I'm essentially after, however, the demo is for a submenu that slides down instead of having the the submenu slide up above the menu item. Here is the ...
heathwaller's user avatar