- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
jQuery click() with Example
The click() method in jQuery is used to initiate the click event or attach a function to run when a click event occurs.
Syntax
The syntax is as follows −
$(selector).click(function);
Example
Let us now see an example to implement the jQuery click() method −
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function(){ $(document).ready(function() { $("p").click(function() { alert('Paragraph clicked!') }); }); }); </script> </head> <body> <h2>Demo Heading</h2> <p>This is a paragraph.</p> </body> </html>
Output
This will produce the following output −
Now, click on the paragraph and an alert box will generate −
- Related Articles
- jQuery appendTo() with Example
- jQuery closest() with Example
- jQuery dblclick() with Example
- jQuery fadeOut() with Example
- jQuery find() with Example
- jQuery first() with Example
- jQuery focus() with Example
- jQuery blur() with Example
- jQuery focusin() with Example
- jQuery finish() with Example
- jQuery addClass() with Example
- jQuery focusout() with Example
- jQuery nextUntil() with Example
- jQuery innerWidth() with Example
- jQuery change() with Example

Advertisements