Questions tagged [mouseenter]

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

Mouseenter is an event that fires when the user moves the mouse inside of the element you registered the event on.

576 questions
0
votes
2 answers

Jquery chaining syntax

What is the correct way to invoke a mouseenter() event... pause... mouseleave() event? Something like... $('.some_item').each(function(index) { $(this).mouseenter().delay(2000*index).mouseleave(); }); ...but that doesn't work Here's a fiddle to…
Turnip
  • 35,836
  • 15
  • 89
  • 111
0
votes
2 answers

jQuery how do i select multiple elements

I am new to jQuery and i want to figure out how to select multiple elements for my navigation bar i'm trying to create. I want to have it check if the users mouse is over the item in the navigation bar or over the drop down menu (otherwise the drop…
Alec B
  • 1
0
votes
3 answers

Why is a mouseenter animation attached to the child and not just the parent?

I have a jquery animation that is triggered by a mouseenter on the parent () but If the user "wiggles" the mouse on the child () the animation flickers as though it is switching between the mouseout and mouseenter. The mouseenter is called on the…
dcp3450
  • 10,959
  • 23
  • 58
  • 110
0
votes
5 answers

mouseenter/mouseout makes div flicker

I have a tooltip that shows on the mouseenter event and hides on the mouseout event. Sometimes, not always, when the mouse moves within the image for the tooltip the tooltip flickers. How can i prevent this happening? Is there a better way to do…
Troy Cosentino
  • 4,658
  • 9
  • 37
  • 59
0
votes
1 answer

WPF TextBlock Text updates only once

Sorry for the possible noob question, I'm quite new to C# and WPF. I created a window with some controls on it. All of them have ToolTips filled out. I would like to have a dedicated area on the bottom of the window (a TextBlock) to show these tips…
Tachikoma
  • 3
  • 1
0
votes
3 answers

Multiple hover instances jQuery

I have a div to animate from the top to the bottom of another div. I'm currently playing w/ mouseenter/leave and JS animations w/ easing where its original state is up/top. I want to hover/mouseenter and have it move down and stay down if I…
Commandrea
  • 561
  • 3
  • 10
  • 24
0
votes
2 answers

Jquery: Display error with animated and multiple divs on hover

I have written this little jquery, which has a nice hover effect. However, on certain mouse hovers, the sccipt seems to be faulty, as it seems to cause a loop of animate effects. (Mostly when you hover between the 2nd and 3rd div) Does anybody have…
0
votes
1 answer

Image keeps showing after mouseover in IE8

I have a image which has an mouseover jquery function: $(document).ready(function ()) { mouseenter: function () { $(this).children('.item_450_description').stop().fadeTo(500, 1); }, mouseleave: function () { …
Stefan
  • 155
  • 7
  • 18
0
votes
2 answers

JS/jQuery - Try to achieve show a div on and off use mouseenter() mouseleave() so not to get repeated animations

So here's my code: var timeouts = {}; $('#nav ul > li').mouseenter(function() { clearTimeout(timeouts['menu']); $(this).find('div.dropdown').stop(true).slideDown(200); }); $('#nav ul > li').mouseleave(function() { …
0
votes
1 answer

VB.Net Mouse.Enter and Mouse.Leave both called in same event?

In my VB.Net forms application, I have a function: Private Sub pnlMain_MouseLeave(sender As Object, e As System.EventArgs) Handles pnlMain.MouseLeave ... End Sub and another function: Private Sub pnlMain_MouseEnter(sender As Object, e As…
Chiwda
  • 1,233
  • 7
  • 30
  • 52
0
votes
2 answers

jQuery child element mouseenter mouseleave

Here is the example: http://jsfiddle.net/FdT23/4/ The goal is that when you hover your mouse over the black box, the gray rectangle on the bottom will fadeIn and when you mouse out, the rectangle with fadeOut. But if I mouseover the gray rectangle,…
Freddie
  • 691
  • 2
  • 9
  • 23
0
votes
1 answer

Mousemove effect animate not found

Is there any way to make the effect smoother when we entered the container. The idea is that the list of icons or numbers must be relative to the center then it occurred put it this way, but I can not make softer positions without losing the…
Raul Valverde
  • 587
  • 4
  • 11
0
votes
5 answers

Simple jQuery fadeIn fadeOut animation - How to show / hide DIVS?

SCENARIO: Have 2 links inside a list of ul, li: MY INFO and LOG IN One link must show a box (with fadeIn animation ) with a form inside when used HOVER on the link. Other link shows a button inside a box (with fadeIn animation) when you HOVER on…
mlclm
  • 725
  • 6
  • 16
  • 38
0
votes
2 answers

how to fix this weird behaviours? Hover link -> fadeIn the div, mouleave -> fadeOut the div

Trying to make a form appear for login when mouseover on link Log In class="classB" , and another box with information when hover on link My Info with the class="classA" , then the box should fadeOut when mouse leaves the box and the link. But the…
mlclm
  • 725
  • 6
  • 16
  • 38
0
votes
1 answer

iOS .click() --> .fadeOut() not allowing for later mouseenter --> .fadeIn()

I have a very simple mouseenter on tab to fadeIn child div thing going on, but I want touch devices to be able to tap on a close link to fadeOut the child. That's working smoothly. When the iOS user taps again on the tab to fadeIn its child, it…
natejones
  • 61
  • 1
  • 8