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
Assuming your selector is #myid
, use $('#myid:hover')
instead of using .is()
.
If you are using $(this)
or a variable, use myVar.filter(':hover')
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With