Jqueryhover () methodInstance
Change the background color of the <p> element when the mouse pointer hovers over it:
$ ("P"). Hover (function () {
$ ("P"). CSS ("Background-color", "yellow");
},function () {
$ ("P"). CSS ("Background-color", "pink");
});
Try it? Definition and usage
The hover () method specifies the two functions to run when the mouse pointer hovers over the selected element.
This method triggers the MouseEnter and MouseLeave events before the JQuery 1.7 release.
This method triggers the mouseover and mouseout events after the JQuery 1.8 release.
Syntax $ (
selector). Hover (
infunction,outfunction)
Call:
$(). Hover( handlerin,)
The same way:
$(). MouseOver(). Mouseout();
Note: If only one function is specified, it will run on the mouseover and Mouseout events.
Call:
$(selector). Hover(handlerinout)
Equivalent to:
$(). On("MouseOver mouseout",);
Parameters |
Description |
Infunction |
Necessary. Specifies the function that runs when the MouseOver event occurs. |
Outfunction |
Optional. Specifies the function that runs when the Mouseout event occurs. |
JQuery Hover () Method-"Dog hi-Silent record"-