#7379 closed bug (duplicate)
Hover function on disabled input doesn't work
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | high | Milestone: | 1.5 |
Component: | event | Version: | 1.4.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
When using the hover event on a disabled input, no event is raised (beside for opera 10.63). Same goes for bind with mouseover.
$(document).ready(function(){ $('.hover-this').bind('mouseover', function(){ $(this).css({border: '1px solid red'}); }); $('.hover-this').hover(function(){ $(this).css({border: '1px solid red'}); }, function(){ $(this).css({border: '0px'}); }); });
Change History (5)
comment:1 Changed 13 years ago by
comment:2 Changed 13 years ago by
Practically a dupe of #7359. Check that bug report and my/the comments there
comment:3 Changed 13 years ago by
Resolution: | → duplicate |
---|---|
Status: | new → closed |
comment:5 Changed 13 years ago by
Component: | unfiled → event |
---|---|
Priority: | undecided → high |
More evidence to support the discussion of adding workaround support for this issue.
Note: See
TracTickets for help on using
tickets.
jsFiddle of the above code: http://jsfiddle.net/LRtQY/