Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to use jQuery .on and hover?

Tags:

jquery

I have a <ul> that is populated with javascript after the initial page load. I'm currently using .bind with mouseover and mouseout.

The project just updated to jQuery 1.7 so I have the option to use .on, but I can't seem to get it to work with hover. Is it possible to use .on with hover?

EDIT: The elements I'm binding to are loaded with javascript after the document loads. That's why I'm using on and not just hover.

like image 445
Ryre Avatar asked Mar 22 '12 17:03

Ryre


People also ask

Does jQuery handle hover?

The hover() is an inbuilt method in jQuery which is used to specify two functions to start when mouse pointer move over the selected element.

Is hover deprecated in jQuery?

hover() is deprecated #66.

What is the use of .on in jQuery?

The on() is an inbuilt method in jQuery which is used to attach one or more event handlers for the selected elements and child elements in the DOM tree.

What is jQuery mouseover?

jQuery mouseover() MethodThe mouseover event occurs when the mouse pointer is over the selected element. The mouseover() method triggers the mouseover event, or attaches a function to run when a mouseover event occurs.


1 Answers

(Look at the last edit in this answer if you need to use .on() with elements populated with JavaScript)

Use this for elements that are not populated using JavaScript:

$(".selector").on("mouseover", function () {     //stuff to do on mouseover }); 

.hover() has it's own handler: http://api.jquery.com/hover/

If you want to do multiple things, chain them in the .on() handler like so:

$(".selector").on({     mouseenter: function () {         //stuff to do on mouse enter     },     mouseleave: function () {         //stuff to do on mouse leave     } }); 

According to the answers provided below you can use hover with .on(), but:

Although strongly discouraged for new code, you may see the pseudo-event-name "hover" used as a shorthand for the string "mouseenter mouseleave". It attaches a single event handler for those two events, and the handler must examine event.type to determine whether the event is mouseenter or mouseleave. Do not confuse the "hover" pseudo-event-name with the .hover() method, which accepts one or two functions.

Also, there are no performance advantages to using it and it's more bulky than just using mouseenter or mouseleave. The answer I provided requires less code and is the proper way to achieve something like this.

EDIT

It's been a while since this question was answered and it seems to have gained some traction. The above code still stands, but I did want to add something to my original answer.

While I prefer using mouseenter and mouseleave (helps me understand whats going on in the code) with .on() it is just the same as writing the following with hover()

$(".selector").hover(function () {     //stuff to do on mouse enter },  function () {     //stuff to do on mouse leave }); 

Since the original question did ask how they could properly use on() with hover(), I thought I would correct the usage of on() and didn't find it necessary to add the hover() code at the time.

EDIT DECEMBER 11, 2012

Some new answers provided below detail how .on() should work if the div in question is populated using JavaScript. For example, let's say you populate a div using jQuery's .load() event, like so:

(function ($) {     //append div to document body     $('<div class="selector">Test</div>').appendTo(document.body); }(jQuery)); 

The above code for .on() would not stand. Instead, you should modify your code slightly, like this:

$(document).on({     mouseenter: function () {         //stuff to do on mouse enter     },     mouseleave: function () {         //stuff to do on mouse leave     } }, ".selector"); //pass the element as an argument to .on 

This code will work for an element populated with JavaScript after a .load() event has happened. Just change your argument to the appropriate selector.

like image 180
Sethen Avatar answered Oct 01 '22 20:10

Sethen