Tagged Questions

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

learn more… | top users | synonyms

6
votes
4answers
588 views

JQuery animate border without moving div

I want to animate a div by first making it's border thicker by 5px on mouseenter, then decreasing the border by 5px on mouseleave, the tricky part is that I don't want the div to look like it's moving ...
4
votes
2answers
154 views

Can mouseenter be made to not fire in IE on DOMready?

jQuery emulates IE's mouseenter event on non-IE browsers. In IE, however, mouseenter is being triggered when the page loads (maybe due to jQuery's use of doScroll in the $.ready implementation), even ...
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
115 views

MouseEnter/MouseLeave on RowDefinition

I want to do this: https://github.com/rails/rails/commit/f50aeda2f73b47c47664e3651c638ba624418b8b See how, as your mouse cursor moves over the lines of source code, an image/button appears to the ...
3
votes
1answer
288 views

mouseleave event does not work in absolute child element

I have menu list like <ul class="systeMenus"> <li> <ul> <li></li> <li></li> <li></li> ...
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
5answers
59 views

How can i execute the action only on the div,when i have multiple div with same class

How can i execute the action only on the div,when i have multiple div with same class http://jsfiddle.net/kent93/Qw7bw/ when the mouse enter one div , the other div also will have action , how can i ...
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
2answers
217 views

Hover/mouseenter event triggers jQuery UI's 'animate' repetitively

So I have a navigation and I'm using jQuery's UI animate to make the list item slide down out of view, change colour, and to then slide back up, revealing the button in a different color. The problem ...
2
votes
2answers
148 views

Handle all Hyperlinks MouseEnter event in a loaded loose Flowdocument

I'm new to WPF, working on my first project. I've been stuck in this problem for a week so I'm trying to find some help here. I have a FlowDocumentReader inside my app, wich loads several ...
2
votes
1answer
211 views

Mouseover/mouseenter not fired by browser on animated/moving element

If you have an element that has an animation to move it around, the mouseover and mouseenter events aren't fired unless the mouse is moved by the user. To demonstrate try the block of code below with ...
2
votes
1answer
391 views

WPF Creating Custom Events

I am working on a part of a menu to allow it to be re-organized by its user. This menu has a grid(4x3) with 12 elements, all of which are of the type NavButton, a class I created that extends Button. ...
2
votes
3answers
337 views

Java MouseEvents not working

This may be a stupid question, but I have to ask! I have the following code snippets that are supposed to run their corresponding methods when the user interacts with objects. For some reason, "foo" ...
2
votes
1answer
247 views

How can I tie a WPF Command to a MouseEnter event?

I need to tie a WPF-Command to the MouseEnter event of a Stackpanel. How can I do that?
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
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
63 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
1answer
79 views

Any way for a ToolTip to trigger a MouseEnter event?

I have a control with a tooltip. What i want is that when I hover over the control and the tooltip opens: if I then enter the tooltip with the mouse - this will trigger a mouseEnter event in order to ...
1
vote
3answers
48 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
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
45 views

MouseEnter & MouseLeave objectname

I want to add MouseOver& MouseLeave events to dynamical created panels in a flowLayoutPanel. I added all panels in a list named "panels" and they are accessible with "panels[index]". Now I want ...
1
vote
2answers
82 views

jQuery live function with setTimeout

I'm trying to combine mouseenter, live and setTimeout function to make some animations $(".kundenList li").live("mouseenter", function(){ if ($(this).children().length > 0) { ...
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
53 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
0answers
128 views

How to properly scroll an overflowing div based on mouse position within its container

I am working on a small jQuery plugin that autoscrolls through a set of overflowing elements within a container div based on the mouse position within that container div. See the Demo Here The idea ...
1
vote
5answers
111 views

jQuery: Show only one, not ALL on hover

I was wondering how I could make my script only apply the effect to the current List Item being hovered on instead of every List Item in the Unordered List. Script: <script> ...
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
1answer
260 views

In Firefox 5 jQuery slideDown() starts a chain of animation in the child list items

I created a dropdown menu using jQuery. So when I hover over a button it slides down the menu. Now if I move the mouse out of the menu and bring it back in before it slides up(menu has a lot of items ...
1
vote
2answers
383 views

MouseEnter and MouseLeave Event not raising in user control

Here is the problem: I have a simple c# form I have a simple c# user control containing a picturebox and other button. My form contains one instance of the user control. I want that when the user do ...
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
4answers
109 views

Help with attr, mouseenter, and mouseout not functioning correctly

I can't get the attr function to change the class and keep it until the next click. It also won't use the new mouseenter and mouseout functions. Any ideas what I am doing wrong? HTML <a href="" ...
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
3answers
4k views

jQuery UI slide effect on mouseenter

I've been at this for a couple of days now, so any help would be much appreciated. I've got a link which contains two divs sitting on top of each other. The top div is hidden, but slides in to ...
0
votes
1answer
15 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
0answers
13 views

Retrieving a jquery mouseenter promise

I have a mouseenter event on a high level div (parent). When this runs I also check in the mouseenter function to see if I have mouseenter'ed an inner div to the parent. $('#whatever').on({ ...
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 ...
0
votes
0answers
32 views

Show tooltip on div enter remove tooltip on label click and show image

I have a div on which I need to show a tooltip. Inside the div I have a label. On label click I need to hide the tooltip and then show a image. The image will guide me to link then. I am using this ...
0
votes
3answers
39 views

mouseenter z-index 10 animate to left, then mouseleave z-index -10 animate back to right?

I am trying to have this hidden div behind the main div at all times, exept when: mouse enters the hidden div, it should animate to the left, then back to the right and be on top of the main div ...
0
votes
1answer
27 views

jquery resets border animation

I have a div with 1px solid border. and I want to give it a border color animation with jquery. Here is my code ; //Products border motion jQuery(".products-two").mouseenter( function(){ ...
0
votes
1answer
31 views

jQuery navigation menu using setTimeout, mouseenter, mouseleave

I'm having trouble spotting an issue where this jQuery menu breaks when hovering between the three main tabs. The menu works if i hover in, then hover all the way out before selecting another tab... I ...
0
votes
1answer
39 views

JQuery mouseenter handler possible to ignore an element

I have a situation whereby a series of overlapping divs carry a shadow effect. Using position:absolute, they have a shadow effect that rests over the last div. The problem is that each div has a ...

1 2 3