Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.is(":hover") is broken as of jQuery 1.9 How to fix

Tags:

jquery

hover

When doing $(...your selector here...).is(":hover"), jQuery prior to 1.9.1 gave correct answer, while jQuery 1.9.1 tells you this:

Error: Syntax error, unrecognized expression: unsupported pseudo: hover

This is not about performing an action on hover - for that, just use .hover() This is about, at an arbitrary point in time, finding out whether or not some element is being hovered

Thank you Mooseman for the answer, which I shall demonstrate with a fiddle

like image 330
mathheadinclouds Avatar asked May 11 '13 13:05

mathheadinclouds


1 Answers

Assuming your selector is #myid, use $('#myid:hover') instead of using .is().

If you are using $(this) or a variable, use myVar.filter(':hover').

like image 161
Mooseman Avatar answered Oct 15 '22 11:10

Mooseman