Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

jQuery click() Method

❮ jQuery Event Methods

Example

Click on a <p> element to alert a text:

$("p").click(function(){
  alert("The paragraph was clicked.");
});
Try it Yourself »

Definition and Usage

The click event occurs when an element is clicked.

The click() method triggers the click event, or attaches a function to run when a click event occurs.


Syntax

Trigger the click event for the selected elements:

$(selector).click() Try it

Attach a function to the click event:

$(selector).click(function) Try it

Parameter Description
function Optional. Specifies the function to run when the click event occurs

❮ jQuery Event Methods