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

All Questions

Tagged with
0 votes
1 answer
128 views

.slideUp() and slideDown() on mouseover() issue - for each element differently

Current question is extension of $(".someclass").is(":hover") works well for only single "someclass" instance below jquery snippet works allready well for http://...
s1w_'s user avatar
  • 143
1 vote
1 answer
1k views

jquery: menu disappear on scroll reappear hover/mouseover/out

Im trying to have a menu across the bottom of an endless scrolling page. I have the gist of it here FIDDLE When you scroll I would like the menu to disappear and then reappear on a hover/...
user3566358's user avatar
0 votes
1 answer
5k views

slideDown drop down menu

so I'm trying to make a nice little effect on my drop down menu, but i don't know the right way to use the hover and slideDown function $('nav > div > ul > li').hover(function() { $('nav ...
Legarndary's user avatar
0 votes
3 answers
2k views

Change background of a div with a slideDown effect when hovering over a link

I am using jquery to change the background of a transparent div when hovering over links in other div (here is the Jsfiddle) . Here is the code: $(".trigger2").hover(function (){ var hoverClass = ...
Acidon's user avatar
  • 1,334
0 votes
2 answers
6k views

Adding slideUp / slideDown to hover function

I have been helped with the code to hover over an image and for another image to appear over the original. $('.hoverpic').hover(function () { $(this).attr('src',$(this).attr('src').replace('.jpg',...
briannie's user avatar
-1 votes
4 answers
138 views

Hover content of a hover()

I have a simple button which displays a list on hover. Working example I just need to hover the list content, like a dropdown menu. How do I add script to perform that function? HTML <button id=...
Jhonny's user avatar
  • 164
0 votes
1 answer
2k views

Hover on one element, make another element slide down

I have a top-level navigation that is being made using a Wordpress built-in function. I then have another function that is taking one of the top level navigation's page id to create a list of it's ...
user1380540's user avatar
5 votes
3 answers
4k views

JQuery .slideDown() is sliding up

This works but I'm not sure why. In function capIn(), in my mind the line $botcap.slideDown("slow") should slide the div down. It slides it up. If I try using .slideUp() nothing happens as if it is ...
Jonathan Eckman's user avatar
4 votes
2 answers
2k views

jquery to only allow one rollover at a time

I created a .slideDown & .slideUp effect on a div based on mouseover and mouseleave. The problem is that when I rollover multiple divs to fast then rolloff it seems to keep a memory of how many ...
Julio Salvat's user avatar
2 votes
1 answer
485 views

slideUp slideDown animation error

i have a div when hovered over and second image slides up and when the mouse leaves it slides back down, the animation is exactly how i want it but if you mouse in and out too quickly without the ...
George's user avatar
  • 23
2 votes
2 answers
2k views

Mega-menu on hover without lists

I have this mega-menu that I want to show on hover and keep open until the user leaves the mega-menu or the trigger area. I have it working onClick, but I cannot seem to get it to work on-hover. Any ...
NotAnotherCliche's user avatar
0 votes
1 answer
335 views

jquery slideUp doesn't work on flyout menu

Here is my code http://jsfiddle.net/dmitrymar/65QHT/5/ I'm having trouble making slideUp work with css flyout menu. I got the slideDown to work although not very smoothly. I'm confused whether there'...
Dmitry's user avatar
  • 4,293