1.

Explain Mouseup() Method In Jquery?

Answer»

The mouseup() method ATTACHES an event handler function to an HTML ELEMENT. The function is executed, when the LEFT mouse button is released, while the mouse is over the HTML element:

EXAMPLE: $("#p1").mouseup(function(){ alert("Mouse up over p1!"); });

The mouseup() method attaches an event handler function to an HTML element. The function is executed, when the left mouse button is released, while the mouse is over the HTML element:

Example: $("#p1").mouseup(function(){ alert("Mouse up over p1!"); });



Discussion

No Comment Found