- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
How to handle a link click event using jQuery?
To handle a click event using jQuery, use the click() method. You can try to run the following code to handle a link click event using jQuery −
Example
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("a").click(function(){ alert("You've clicked the link."); }); }); </script> </head> <body> <p>Click below link.</p> <a href="#">Click</a> </body> </html>
- Related Articles
- How to handle a double click event using jQuery?
- How to handle a mouse right click event using jQuery?
- How to submit a form using jQuery click event?
- How to handle a Button click event in tkinter?
- How to handle the click event in Listview in Android using Kotlin?
- How to handle jQuery AJAX success event?
- How to handle the click event in ListView in android?
- How to disable right click using jQuery?
- How to get attribute of an element when using the 'click' event in jQuery?
- How to click on a hyper link using linkText in Selenium?
- How to click on a link using Selenium webdriver in Python.
- How to handle bind an event using JavaScript?
- How to add target=”_blank” to a link using jQuery?
- How to click on a link in Selenium?
- How to remove event handlers using jQuery?

Advertisements