Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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 suppress jQuery event handling temporarily?
To suppress jQuery event handling temporarily, add a class to your element so that you can prevent further code from execution.
Example
You can try to run the following code to learn how to suppress jQuery event handling −
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(element).click(function(e) {
e.preventDefault();
// Check for fired class
if ($(this).hasClass('fired') == false) {
// Add fired class
$(element).addClass('fired');
// Remove fired class
$(element).removeClass('fired');
}
});
});
</script>
<style>
.fired {
font-size: 25px;
color: green;
}
</style>
</head>
<body>
<h1>This is a heading</h1>
<p class="fired">This is a paragraph.</p>
<p class="fired">This is second paragraph.</p>
</body>
</html>Advertisements