- 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
How to check if event exists on element in jQuery?
To check if event exists on element in jQuery, check for the existing events on the element.
Here, I have set the div −
<div id="demo"> This is demo text. Click here! </div>
When you click div, then the alert generates which I have set using the div id:
$("#demo").click(function() { alert("Does event exists? - "+hasEvents); });
You can try to run the following code to check if event exists −
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(){ $("#demo").click(function() { alert("Does event exists? - "+hasEvents); }); var events = $._data(document.getElementById('demo'), "events"); var hasEvents = (events != null); }); </script> </head> <body> <div id="demo">This is demo text. Click here!</div> </body> </html>
- Related Articles
- How to check if onClick exists on element in jQuery?
- How to check if element exists in the visible DOM?
- How to check if Element exists in c# Selenium drivers?
- How to check the element type of an event target with jQuery?
- Check if a particular element exists in Java LinkedHashSet
- Java Program to check if a particular element exists in HashSet
- Check if element exists in list of lists in Python
- How to check if an element has a class in jQuery?
- How to find if element exists in document - MongoDB?
- How to check if a variable exists in JavaScript?
- How to check if a column exists in Pandas?
- How to check if a file exists in Golang?
- How to check if a MySQL database exists?
- How do I check if an element is hidden in jQuery?
- How can we check if file exists anywhere on the system in Java?

Advertisements