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
3 answers

Call function associated with mouseenter

With jQuery, I added a function to an element like this: $('#theId').mouseenter(function(){ // ... }); Now, I want to call the function associated with #theId.mouseenter, from a script. I know this is…
user1544337
0
votes
6 answers

JQuery mouseenter() and mouseleave()

So I have got this demo navigation, which has a small button on the side and when you hover the button, it slides the menu into the window. though I have got the hover working, but now when the mouse leaves, it's still open. how to fix this? I'm…
user1814458
  • 13
  • 1
  • 4
0
votes
1 answer

jquery bind() binding to unwanted elements

I have a ul, each li has a row of images, and I am trying to bind a function to each li so that on 'mouseenter' the row of images appears, and on 'mouseout' the row of images disappears...I call bind() on the div within each li based on a an #id, so…
0
votes
1 answer

After a div animate still behind other div

Situation: I have 3 div's |left|center|right| I have 3 other divs inside left and 3 other inside right. When I pass in any of this 6 divs, they increase width. The right side is ok, but the left side, when it grows, is still behind the center…
lcssanches
  • 995
  • 12
  • 33
0
votes
1 answer

Don't allow the div to block parent events

I've some elments that, on dispatching the mouseenter, it creates a div that cover the selected element using a div with just borders. Something like this: function attachSelectorBarTo(el){ var bar = $('#editor-selection-bar'); …
Lwyrn
  • 1,821
  • 1
  • 16
  • 27
0
votes
2 answers

mouseenter and mouseleave do not works jquery

HTML code: CSS code .card{position: static; margin-top: 100px; margin-left: 100px; z-index: 10; } .cuad{ opacity: 0.3; border: 4px solid black; width: 40px; height: 40px; …
Ihor Patychenko
  • 196
  • 6
  • 19
0
votes
2 answers

jQuery: single mouseenter/mouseleave handler

I need to track mouseenter / mouseleave events for all elements on the page. Intuitively written code for it was: $(window).on('mouseenter mouseleave', function(e) { console.log(e.target, e.type); // ... }); But it fires mouseleave events every…
Georgii Ivankin
  • 2,702
  • 2
  • 23
  • 35
0
votes
1 answer

jquery mouseneter and unbind

ran into a wall and need some help I am working on a project, and basically.. when you hover over the image, I need it to "pause". When you mouse out, it toggles back. I have this working once... but because I am unbinding the event, It only works…
gregdevs
  • 703
  • 2
  • 11
  • 37
0
votes
2 answers

Mouseleave does not work with .each and delay?

I have written some code to change the colour of each letter inside an a tag and show a pop up when you hover the link. The mouseenter function works fine but when you hover off the link I would like to do the reverse of the original change ( so…
Chris G-Jones
  • 596
  • 4
  • 13
  • 26
0
votes
1 answer

jquery .on method don't work

I work on my script to show some video, when you are "onmouseover" on my div. Because of IE I use jquery function which call mouseenter, but nothing happend. My script: jQuery.fn.PlayMovieHome = function () { alert("something"); var co =…
0
votes
1 answer

Deactivate mouseenter event then reactivate once animations have finished

I have the following code which executes some animations etc. when the user hovers over an element, however if they "enter" and "leave" the element with the mouse rapidly and repeatedly it messes up the animations. How can I deactive the mousenter…
user1937021
  • 10,151
  • 22
  • 81
  • 143
0
votes
1 answer

MouseEnter event not fired during an animation

I have a red border moved by an animation (with a RenderTransform) and the blue border underneath is handling the MouseEnter event. Unfortunately, the MouseEnter is not fired when the mouse enters the blue border (because the red border has moved…
Mart
  • 5,608
  • 3
  • 32
  • 45
0
votes
3 answers

change visibility for each div on mouseenter/mouseleave jquery

I've looked at all the documentation on the jquery website, and I've also searched on all the questions related to my problem, but I have not found a solution. What I'm wanting to do is when you hover on the post class is to make the links in post…
Hikaru Kagi
  • 5
  • 1
  • 6
0
votes
0 answers

Internet Explorer and the Mouseenter function

I am self-teaching JQuery and have run into a bit of a snag. What I've done is layered a div over the image, set visability to hidden, and use JQuery to state that when I mouseenter the image, the box is visable, and when I mouseleave, the box…
0
votes
3 answers

jQuery mouseenter mouseleave tool tips

I have tried the following two methods to display hidden contents that comes with each div that has the class name avatar.
Users Profile with…
Tim
  • 403
  • 1
  • 6
  • 20