Questions tagged [mouseleave]

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

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

525 questions
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

element hover overlapping element

I'm trying to get a tooltip effect with jQuery and it isn't working exactly the way I want it to. $(".product").mouseover(function() { $(this).find(".description").fadeIn(300); }).mouseleave(function() { …
AKG
  • 2,936
  • 5
  • 27
  • 36
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

jQuery: mouseenter/mouseleave even stop propagation

I'm using mouseenter and mouseleave events in jquery on an unordered list's
  • to show some image when the mouse goes over them. Here's what that list typically looks like:
  • 0
    votes
    2 answers

    Jquery Event not working after Ajax Pagination

    Below is the code i am working with, i have been using .mouseenter(function () { with no problems... I have been reading that when you use .live() it applies the events to existing & new dom elements but for some reason now the function isnt working…
    0
    votes
    3 answers

    Not having any luck with :hover, either with jquery or css

    Neither seem to work right for me. Starting with query: This causes the opacity to shift down, but it doesnt resume on…
    user1361747
    • 31
    • 2
    • 9
    0
    votes
    1 answer

    Persist mouseenter/mouseleave on parent element

    I have this HTML:
    • link a
    • link b
    • link…
    Ste
    • 1,497
    • 8
    • 33
    • 63
    -1
    votes
    1 answer

    Javascript start and repeat function upon mouseover & stop repeat upon mouseleave

    I am successfully starting an animation upon mouseover, but cannot manage to stop it upon mouseleave: Start animation: var executed = false; // to execute only once on repeat hover var startslider = {}; $('#imgBx').mouseover(function(){ if…
    -1
    votes
    1 answer

    Tkinter Leave event firing only on program startup?

    I'm trying to place a small label hinting the user the keyboard shortcut bound to it, which works fine. The problem arises when I'm leaving the button. The label disappears, but not quite. If I try to click the button in the area the label "used"…
    vl3005
    • 45
    • 4
    1 2 3
    34
    35