.length
PropertyYou can use the jQuery .length
property to determine whether an element exists or not in case if you want to fire some event only if a particular element exists in DOM.
Here's an example that displays an alert on button click if the specified element exists.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Test If an Element Exists</title>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
if($("#myDiv").length){
alert("The element you're testing is present.");
}
});
});
</script>
</head>
<body>
<div id="myDiv"></div>
<p>The quick brown fox jumps over the lazy dog</p>
<button>Check Element</button>
</body>
Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]
Laravel Get Headers From Request Example
In Laravel application, there are many w...How to Reset a Form Using jQuery or JavaScript
Use the reset() Method You can simply...Build Dynamic Data Table in Vue.js 2+ with Vuetify
In this tutorial, we are going to learn...Authenticate Users With Node ExpressJS and Passport.js
Today, Node Js one of the most popular l...How to AJAX Submit a Form in jQuery
Use the jQuery $.post() Method You ca...