Tagged Questions

For issues relating to setting up, subscribing to, or handling mouseleave events.

learn more… | top users | synonyms

8
votes
5answers
322 views

What is the difference between jQuery's mouseout() and mouseleave()?

What is the difference between jQuery's mouseout() and mouseleave()?
5
votes
6answers
132 views

Jquery mouseleave effect through div's bottom border

This is making me crazy. Is there a way to fire a mouseleave jquery effect only if leaving the div through its bottom border? That is, preventing said effect from taking place if the mouse pointer ...
4
votes
1answer
230 views

jQuery mouseleave not firing correctly while dragging

I have a sortable list with a mouseleave event listener that is behaving incorrectly. If I move the mouse in and out of the sortable list, mouseleave fires correctly. If I first click and drag one ...
4
votes
4answers
2k views

Funky jQuery mouseleave behavior

I have a menu-like drop down container that hides via binding the "mouseleave" event. <div id="container"> <select> <option>1</option> <option>2</option> ...
4
votes
3answers
3k views

C# WinForms - MouseHover/MouseLeave event on the whole entire window

I have Form subclass with handlers for MouseHover and MouseLeave. When the pointer is on the background of the window, the events work fine, but when the pointer moves onto a control inside the ...
3
votes
1answer
44 views

jquery mouseenter mouseleave with datatables, doesnt work in chrome or IE

I'm using the datatables plugin to display a table. In the configuration parameters I've set bJQueryUI : true so the table apply the style of the current jQuery UI style that I'm working with. In the ...
3
votes
3answers
114 views

check for ('div')mouseenter on ('a')mouseleave

my problem is following: I got a trigger(a) and a popup(div). The div doesn't lie nested inside the anchor. When I hover over a, I want the div to show up. When I go from a to the div, I want it to ...
3
votes
1answer
255 views

Silverlight MouseLeave showing inconistent behaviour

So, my problem is that the MouseLeave event only gets triggered if I move my cursor at a certain speed. Below is a Thumb with a Border. Click the thumb and keep the mouse button down. Move slowly ...
3
votes
3answers
353 views

jQuery mouseenter/mouseleave html()-swap issue

I have the following Javascript/jQuery function: function addEventHandler(){ $("div").mouseenter(function() { $(this).html("Over"); }).mouseleave(function() { ...
3
votes
1answer
192 views

Issue with hover events and parents

So let's say I have a block of nested divs: <div class='nested'> <div class='nested'> <div class='nested'></div> </div> </div> I want this kind of behavior: ...
2
votes
2answers
40 views

jQuery two mouseenter events, fire one function ONCE

I bound a mouseenter/mouseleave event to an element (just an image), which in turn executes two functions. My issue is that I want one of the two functions to ONLY fire once on the first mouseenter. ...
2
votes
3answers
131 views

JQuery - Showing a div on mouseenter

I've created the following HTML. The yellow boxes contains image thumbnails. When I mouseover a thumbnail it show a view link on top of the thumbnail. But if I move the mouse fast I'm getting the ...
2
votes
1answer
573 views

jQuery mouseleave bugs with animated elements

I have bumped into a weird issue. jQuery 1.4.1 mouseenter/mouseleave events fire up correctly if the mouse is being moved, not a big deal. However, it bugs in some browsers when the cursor itself ...
2
votes
2answers
988 views

jquery mouseenter/mouseleave error when the target div has child input fields

I have two sortable lists, one being nested, with a mouse enter effect on the li elements of the nested sortable list. My problem is that the mouseenter and mouseleave functions are being called ...
2
votes
2answers
2k views

Problem with jQuery Mouseenter/Mouseleave in Firefox

I'm having a problem with the mosueenter/mouseleave events only in Firefox... http://www.screencast.com/users/StanleyGoldman/folders/Jing/media/be3572de-9c72-4e2a-8ead-6d29b0764709 <HTML> ...
1
vote
0answers
36 views

jQuery Flip Plugin: Flip a div once (Diff Content) on mouse enter / Flip back on mouse leave

Been looking for a solution for this for a while but cannot grasp it or find it. I started using hover-quickflip plugin. but its conflicting with a load of other scripts on my page. +you dont have and ...
1
vote
3answers
70 views

jQuery .css color change not working

I am trying to change the color of my text on my lavalamp menu I am using the following plugin http://www.queness.com/post/530/simple-lava-lamp-menu-tutorial-with-jquery What I have done is the ...
1
vote
1answer
33 views

jQuery Hover on Two Seperate Elements

I have two seperate elements setup which appear on different parts of the DOM - the problem I am facing is that they are absolutely positioned and I can't wrap them in a container div. I have setup a ...
1
vote
2answers
35 views

mouseleave function fadeTo initial value (turn back)

I'm doing a background player. When the user clicks the #play button, the main menu fade to 0.1 to not obstruct the view. But he can use the main menu at any time by passing the mouse over it and back ...
1
vote
2answers
22 views

mouse enter mouse leave help for a big array of info

i would like too set a link for every state ,and every city. when the state li is hovered over i only want that this states cities to show .... but i kno only a little jquery code and im not perfect ...
1
vote
1answer
64 views

Problems implementing setTimeout on jquery navigation menu with un-nested submenus

I have a menu list with submenus that are not nested for styling purposes. Thus, I'm using mouseenter and mouseleave, together with settimeout, for hovering behavior. Here's my html: <li ...
1
vote
3answers
50 views

mouseenter/mouseleave being affected by nested child objects

I am hiding a control panel (myNestContainer) on document ready. I have a button called navMyNest that when mouseenter occurs, shows the myNestContainer. This works fine. The issue is that I want ...
1
vote
1answer
39 views

jquery mouseleave causing other script to stop working?

I am writing a rater script so items can be rated 1 through 5 stars. My script works at first, causing the stars to change from the current rating to whatever they are moused over, and then back to ...
1
vote
0answers
77 views

One jQuery animation stopping another animation

EDIT - SOLVED. Solution at the bottom. I've been banging my head against a brick wall with this problem all afternoon. Not a genius with jQuery, so apols if there is already an answer for this - I'm ...
1
vote
2answers
64 views

Problems getting a jQuery .mouseenter()/.mouseleave() script with user interaction to work

Firstly, apologies for the title, I could not think of a suitable one. I am unsure as to why the hide() function within the below code comes back erroneous in firebug when triggered, I am pretty sure ...
1
vote
4answers
49 views

jquery hover in and out

I have 4 boxes within a list. I am trying to set the width to 100% on hover. It works well without setting float:left to the li elements. When float:left is set, the hover over the box on the right ...
1
vote
1answer
31 views

Combining Two Dom Elements as One with Regards to Mouse Events

I have two divs on top of everything positioned next to each other. I'd like for the sake of mouseenter and mouseleave that they be treated as "one". They line up next to each other (or overlap). ...
1
vote
1answer
109 views

Mouse Leave event on Windows Form

I've set 'mouse leave' event on windows form and I want to hide the form when mouse leaves the visible area. Here I am facing a problem. Even when I move mouse to a button on the same form, it calls ...
1
vote
2answers
64 views

Check what element the cursor is on upon mouseleave() with jQuery?

I have a set of list elements (<li> within a <ul>) laid out as bubbles on a chart like this, where the bubbles are the <li> elements: http://i.stack.imgur.com/PR7vR.png I want to ...
1
vote
1answer
55 views

Jquery hover unbind and binding again

I'm currently using this bit of Jquery. $(".option5").toggle( function () { $(this).addClass("red"), $("#check5").attr('checked',true), $(".option5").unbind('mouseenter'); }, function ...
1
vote
4answers
116 views

jQuery .fadeOut probelms in FireFox 6.0

So far, I have the fadeIn working, but the fadeOut has not been quite right. Right now, as soon as the mouse leaves the hover area, it doesn't look like any fadeOut is happening at all. I would like ...
1
vote
1answer
144 views

Mouseenter Mouseleave issue

I have the following html <div class="a-class"> <img src="image" alt="" /> <div class="b-class"></div> </div> I am using ...
1
vote
0answers
103 views

Silverlight 4 and MouseLeave event inside an disabled UserControl

I have a little problem with my RIA-enabled SL application. THE BACKGROUND: The relevant part looks like this: When any data operation (i.e. load, submit, login etc.) is in place, then a ...
1
vote
1answer
233 views

ComboBox doesn't raise keyboard and mouse events as expected

I use Silverlight 4.0 and have got problems with ComboBox control. I want to implement a popup menu which will show and hide itself without clicking mouse. It should show when I place cursor on its ...
1
vote
3answers
338 views

.mouseleave() with .delay() working together

I have a list of several 'triggers' (<li>s), each trigger shows a specific DIV, and each DIV has 'close' button. Now, I want to improve the usability by adding a timer/delay to the ...
1
vote
1answer
212 views

How can I keep a mouseover'd DIV visible via jQuery?

Okay.. a bit complicated of a question. I have a DIV that appears when you mouseover a TR. $(".alignment_tr").hover( function() { console.log( "alignmententer" + triggerMouseover ); var ...
1
vote
1answer
208 views

Mootools: how to stop event, when other event happens

i´ve got a question about mootools eventhandling. I wanna delay a mouseenter event for a dropdown navigation. After 1 second the drowdown list will be shown by "setStyle('display', 'block')...this ...
1
vote
2answers
1k views

Jquery: How to add a delay to mouseleave so if someone accidentally hovers off the element unintentionally, it still stays open

THE hoverintent plugin is the opposite of what I need. I have a .popup that is triggered by .trigger, when i hover off of it, i want .popup to NOT fadeout for a few seconds, but if I hover off, then ...
1
vote
1answer
186 views

jquery mouseleave issue when moving too slow

I am using the jQuery mouseenter and mouseleave events to slide a div down and up. Everything works well except for the mouseleave which doesn't appear to fire ONLY if the mouse of moved off of the ...
1
vote
0answers
363 views

Spurrious MouseEnter/MouseLeave events in Silverlight 4 TreeView

I was trying to use the MouseLeave event to hide a Popup control that contained a TreeView object. It didn't take long to stumble upon the first nuance, that the Popup control doesn't emit a ...
1
vote
1answer
183 views

Check which UIElement the mouse is entering in a MouseLeave event in Silverlight?

I have two UI elements next to each other that I want to behave as if they are one MouseLeave area. How can I check if the mouse is over a UI element being entered during a MouseLeave event? ...
1
vote
2answers
439 views

Blend 4 Beta: How to change image source as part of Timeline

I'm trying out Blend 4 beta, and looking for a way to do a simple thing: When a mouse is hovered on an image, the image should change its source to a different image. When the MouseLeave happens, ...
1
vote
3answers
2k views

Javascript MouseOver / MouseOut children events

I have an element with some child elements. When the mouse leaves the parent element I want to hide the parent and it's children. Problem I'm having is that when I hover over any of the children, the ...
1
vote
3answers
3k views

AS3: MOUSE_OUT not firing when Mouse leaves stage

I am developing a website with nav items that cover the whole stage from top to bottom (see altered image below) and it is pretty easy for the user to exit the stage with their mouse, not triggering ...
1
vote
2answers
922 views

Silverlight MouseLeave Issue

I'm trying to make a color picker in Silverlight similar to this one but I'm having trouble implementing the cursor in the large square area. In order to keep track of the mouse state I have an ...
1
vote
2answers
2k views

troubles with jQuery mouseleave

I am trying to create a menu with this structure: <ul id="primary" class="menuOptions"> <li>Item 1</li> <li>Item 2 <div id="secondary"> ...
0
votes
1answer
22 views

How to fadeout on mouseout, when mouse is clicked and dragged and then out?

I'm using jQuery to fadein and fadeout the tinyScrollBar when the user mouseenters or mouseleaves the scrollable area. The problem I have is if the user clicks and drags on the scrollbar handle, and ...
0
votes
3answers
29 views

jQuery.vticker.js mouseleave, mouseenter functions problems

I am developing a website with a news scroll up or blind effect in a strip. Scenario is when user will mouse hover on a news item then a popbox will open. Everything is going fine with the codes i ...
0
votes
3answers
30 views

Jquery drop down working ok… but could be better

here's my working drop down menu... http://jsfiddle.net/NAyWQ/7/ it does the job, and it's pretty much all the functionality I need at the moment... however I feel like it could be optimized a bit. ...
0
votes
1answer
28 views

jQuery: How to return mouse-events after unbind?

I'm need to show text-input, when mouse enteres the TD element and hide, when it leaves. So, when we click into this input (focus), it unbinds the mouse-events.......what i should write to bind the ...

1 2