hover

jQuery 'grey' out rest of page apart from div user is hovering on

I am working on a dashboard project where the art director wishes to have an affect similar to the one seen here: http://www.asos.com/ Except when the user hovers over a dashboard 'widget' then there is an overlay over all other elements on the page including the body in much the same way as Colorbox et all. I was thinking of creating...

On hovering #leaderboard, add a class to #left-arrow and #right-arrow

Sorry for such a basic question, but I need to know how to add a class to two divs, #left-arrow and #right-arrow when I hoverover #leaderboard. I understand I can use the call hover(), but I'm unsure how to implement it to add a class on another element. I'm definitely a beginning with Javascript, so the more specific on how to implem...

HTML hyperlink remain changed color after mouse has moved over link

I was wondering, I have links that change blue when a mouse hovers over them. Would it be possible to make them remain blue a few seconds after the mouse has moved away? I'm guessing this would be possible with jquery? Thanks! ...

How can I stop a jQuery function on hover?

I have a jQuery function that is running on setInterval(); What I want to do is stop the interval when I hover over the div being displayed, and once I hover off the div, start the interval again (aka continue cycling through the divs). any idea on how to do this in the simplest form possible? Thanks! Amit ...

Stopping jQuery cycle function on hover

Hi everyone, I have a function called testimonials() that basically cycles through a set of divs, whereas it animates a div in, animates it out and animates the next one in. Now, I wanted to make it stop on the current DIV once the mouse is on it, otherwise known as hovering it. And I've made it work using a code I got from another pos...

Twitter like row hover reply,delete links in jquery....

Is there any plugin or how to display twitter like row hover reply,delete links in jquery.... Any suggestion.... EDIT: I am iterating my json data via jquery, $.each(data.Results, function() { divs += '<div class="resultsdiv"> <a href=Clients/Show/' + this.ClientId + '/>Details</div>'; ...

jQuery droppable 'over' event not firing when mouse is over draggable

I have a list of tasks that are all draggable and droppable. All of them have an 'over' event handler to make sure they light up when another task is hovering over them. This is not working fully as I want it to. When I start dragging one task, the other tasks don't light up as expected, except when the mouse is not actually above the d...

Apple like mouse hover-zoom cursor

Hi, Apple has a pretty cool feature when hovering over a large image here: http://www.apple.com/aperture/what-is.html It zooms out a small magnifier glass icon which moves with the cursor while over a zoomable image. How can I do that, preferably with JQuery? Can anyone help me please? THX ...

Image-mouseover, button appears

Hi, please look at my test-page: Test What I like to create: If you hover over the image, the black button with the text and the links will appear. If you leave the image with the mouse, the button (with the text and links) will disappear. How can I create this? It should be work with IE6-7. Please help. THX PS: I used this, to cen...

make width the same size as another html element

Hi I have a dropdown button that when you hover it, it drops down some links to pages. I want those links to be the same size as the width of the button. The button size is 100% width of the content, so it varies. How do I make the size of the drop down items the same size as the button with CSS? <style type="text/css"> #butt...

jquery only hover outside child element

HI, I am trying to hide a child div when you hover on the parent div outside the child, any ideas how I can do this using jquery? At the moment using the hover function, it hides the child div when I hover anywhere over the parent, including when over the child. ...

Image rollover flicker using images via css in Safari

Hi, I have a fairly image heavy site and have image rollovers (:hover) on a lot of images on the page. The page loads but the rollovers images take longer to load and cause a flickering when the user intially rolls over the image. I know that this issue has been disscussed many times however I have not found an appropriate solution that...

jQuery rel attribute

We have many links with rel attributes: <div class="team-tags"> <a class="s1" rel="t1 t2 t3" href="#">One</a> <a class="s2" rel="t2 t3" href="#">Two</a> <a class="s3" rel="t1" href="#">Three</a> <a class="s4" rel="t4 t6" ref="#">Four</a> <a class="s5" rel="t2 t5" href="#">Five</a> </div> And one ul: <ul class="team"> <li class=...

CSS: make fieldset legend bold on hover WITHOUT moving the div below it?

i have a fieldset with a legend. i want the legend to bolden when hovered, however, it shifts the content below it a few pixels down (which is kind of annoying). how can i fix it? here are their stylings: fieldset { border: none; border-top: 1px solid; } legend { font-size: 16px; } .collapsable { cursor: hand; curso...

jquery hover li>ul - keep visible until remove mouse from sub UL..

Code: $("ul.menu_body li:even").addClass("alt"); $('li a.menu_head').hover(function () { $('ul.menu_body').slideToggle('medium'); }, function(){ $('ul.menu_body').slideToggle('medium'); }); found this code somewhere on the web, originally it was a click event on "li a...

how to make inlay controls toggle with jquery?

i have an image. if you mouseover it, the controls for next img and previous image appear, displayed on the image (moved there via css). if i mouseout the image the controls, shell disappear. the problem is, if i mouseover one of the controls i mouseout the image and the controls disappear :-( how can i handle that? i tryed something l...

Removing a hover effect from a revisited page with back button

I'm working on this website, and have a little thorn in my side. When I click a link in the sticky note on this page, then hit the back button, the link still appears to be hovered-over. What would be the least script-intensive way to prevent the link from thinking it's still being hovered over? The problem appears in Safari, Firefox, a...

Applying Hoverintent to a Jquery Hover

Hello all! I'm having some issues with this layout and having a link that displays on hover stay showing! Here's a sample of the table row which is displaying the data... <tr> <td> <div class="heightControl"> <a href="#">data</a> <div class="logRemove"><a href="#" class="sremovelink"></a></div> </div> </td> <td>12.14.09 / 12:3...

How to make gallery image fade on hover to reveal details such as title, enlarge, visit site, etc?

Hi, I've seen a nice image gallery hover effect used quite a lot lately and I'm just wondering whether anybody knows of a good way to recreate such an effect. The effect is when you hover over an image, the image fades out or a div fades in showing links etc over the image. It's similar to the one found here: http://cssnack.com/ and he...

a:hover above img doesnt work properly with display block under IE & Opera

Had anyone got a problem with a:hover that has position: absolute and is above <img> under IE & Opera a:hover has background, but <a> hasnt, both has display: block. Thank you in advance for your help ... To see the problem please check this webpage: http://bckp.eu/test.html or use this code: <!DOCTYPE html PUBLIC "-//W3C//DTD X...