jQuery
jQuery delegate()
The delegate () method is used to attach one or more event handlers for specified elements which are the children of selected elements. This method…
jQuery unload()
The jQuery unload() method is used to unload a specific element. It attaches an event handler to unload event. The unload event is sent to…
jQuery load()
The load () method is used to load a specific element. It attaches an event handler to load event. It was deprecated in jQuery 1.8…
jQuery mouseout()
The mouseout event is occurred when you remove your mouse cursor from the selected element .Once the mouseout event is occurred, it executes the mouseout()…
jQuery mouseover()
The mouseover event is occurred when you put your mouse cursor over the selected element .Once the mouseover event is occurred, it executes the mouseover…
jQuery mouseup()
The mouseup() method adds an event handler function to an HTML element. This function is executed, when the left mouse button is released after pressing…
jQuery mousedown()
The mousedown() method adds an event handler function to an HTML element. This function is executed, when the left mouse button is pressed down, at…
jQuery hover()
The jQuery hover() method executes two functions when you roam the mouse pointer over the selected element. The hover() method triggers both the mouseenter and…
jQuery mouseenter()
The mouseenter() method adds an event handler function to an HTML element. This function is executed, when the mouse pointer enters the HTML element. When…
jQuery keyup()
The jQuery keyup() event occurs when a keyboard button is released after pressing. This method is executed or attach a function to run when a…