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
-1
votes
1 answer

How to keep mouseenter executing repeatedly

I have a simple animation on my website, by default I only display the frame1. My goal is, when the user hover the image, I want to keep executing the next frames. I've tried using mouseenter and mouseover functions. But they only both execute the…
user2310422
  • 555
  • 3
  • 9
  • 22
-1
votes
4 answers

jquery mouseenter doesn't work on 'a' element, works fine on h3

I have (I believe)a very simple problem, but can't figure out what is wrong. the code will tell everything: $(".all-products h3").mouseenter(function () { $(this).siblings('p').slideDown(200); }).mouseleave(function () { …
Piotr Ciszewski
  • 1,691
  • 4
  • 30
  • 53
-1
votes
3 answers

Jquery .on and .off is not working with mouseenter and mouseleave events

I am trying to play with jQuery mouseenter and mouseleave events but failing. Here is what I am trying to do $("#selector").mouseenter(function(){ some code.... jQuery(this).off('mouseenter'); …
Shashi
  • 71
  • 2
  • 10
-2
votes
1 answer

Sap ui5 : why attachEvent method doesnt work with "mouseenter" event?

I'm trying to add mouseenter handler to one of the control (PlanningCalendarAppointment). Thats what i have tried already. control.attachEvent("mouseenter", function () { console.log("test"); // Fixed compilation error }); but it doesnt give…
Michal333
  • 65
  • 1
  • 9
-2
votes
7 answers

mouseenter mouseleave repeating jquery

On my portfolio website each project has his own rectangular with its title. When you move over this rectangular a first photo shows up, when you move from it the photo disappears and the title reappears. this is the HTML
-3
votes
1 answer

mouseenter/mouseleave unwanted waving effect

I am fairly new to JQuery. That being said I am trying to use a .mouseenter that causes a image to become larger in size and it returns to normal size on .mouseleave, it works but my problem is it will start a wave effect that loops a random amount…
1 2 3
38
39