JQuery Hover () Method-"Dog hi-Silent record"-

Source: Internet
Author: User

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"-

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.