jQuery hover() method is a combination of mouseenter() and mouseleave() methods. The hover() method attaches an html element to two of the event handler functions,… [Read More]
jQuery mouseup() Method
jQuery mouseup() Method attaches an event handler function to the html elements. This event handler function is executed when the any of the mouse button… [Read More]
jQuery mousedown() Method
jQuery mousedown() Method associates an event handler function to the html elements. This event handler function is executed when any of the mouse button (left,… [Read More]
jQuery mouseleave() Method
jQuery mouseleave() method attaches mouse leave event handler function to html elements. This mouse leave event is triggered when mouse pointer leaves the html element…. [Read More]
jQuery mouseenter() Method
jQuery mouseenter() Method attaches the mouse enter event handler function to an html element. This event handler function executes when mouse pointer enters the attached… [Read More]
jQuery dblclick() Method
jQuery dblclick() Method attaches a double click event handler function to an html element. This event handler function executes when a user double clicks on… [Read More]
jQuery click() Method
jQuery click event occurs when you click on an html element. jQuery click() method is used to trigger the click event. For example $(“p”).click() will… [Read More]
jQuery Events
jQuery’s event API provides several useful methods that can be used to create dynamic web pages. Events are nothing but actions that you can perform… [Read More]
jQuery Sliding Effects
There are three useful methods in jQuery to slide selected elements up and down. These methods are slideDown(), slideUp() and slideToggle(). In this guide, we… [Read More]
jQuery Fading Effects
jQuery has four useful methods which you can use to fade html elements in and out of visibility. 1. jQuery fadeIn() 2. jQuery fadeOut() 3…. [Read More]