Modify ↓
Ticket #294 (closed feature: worksforme)
hoverClass
| Reported by: | giel.berkers@… | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | |
| Component: | event | Version: | |
| Keywords: | hover hoverclass mouseover mouseout | Cc: | |
| Blocking: | Blocked by: |
Description
It would be nice if there was a feature called hoverClass. Which would simply add a class on a mouseover event and remove it on mouseout. The source would then look like something like:
$("h3").hoverClass("over");
This offcourse would add the class "over" to the h3-element on mouseover and remove it on mouseout.
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

This can be easily added if needed, try this (tested):
jQuery.fn.hoverClass = function(value) { return this.hover(function() { jQuery(this).addClass(value); }, function() { jQuery(this).removeClass(value) }); };