.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]
Use PHP Code into Laravel Blade
in this article, I will share with you h...How to use Bootstrap Tags Input Plugin
In the blog applications, while creating...How to install tar.gz or tar.bz2 file in Ubuntu
In modern Linux distribution, almost sof...How to Setup 404 Page in Angular 12
In this article, we will create 404 erro...How to check or uncheck radio button dynamically using jQuery
Use the jQuery prop() method You can...