Jquery

jQuery Intro

jQuery Intro Quiz

jQuery Intro Exercise

jQuery Basic

jQuery Basic Quiz

jQuery Basic Exercise

jQuery Advance

jQuery Advance Quiz

jQuery Advance Exercise

jQuery Selectors

jQuery Effects

jQuery Events

jQuery Methods and Properties

jQuery Traversing

jQuery CSS and HTML Methods

jQuery hover() Method

jQuery hover() Method

 

 

The hover() method is used to specify two functions to run when the mouse pointer hovers over the selected elements. The two methods are mouseenter and mouseleave which are triggered by the hover() method.

 

Syntax:-

 

Its syntax is:- $(selector).hover(inFunction,outFunction)

 

Further Explanation:-

 

Parameter Description
inFunction Required. Specifies the function to run when the mouseenter event occurs
outFunction Optional. Specifies the function to run when the mouseleave event occurs

Code Explanation

All Tutorials related to jQuery Events

All Sections related to Jquery