Write a jQuery code to check if an object is a jQuery object or not.
Answer :
File Name : jQuery.html
<html>
<head>
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<title>SP Creation</title>
</head>
<body>
<div id="box">
<h2>jquery</h2>
</div>
<div class="col">
Is it a <b></b>.
</div>
<script>
$(document).ready(function(){
var obj = {msg : "Hii"};
$( "b" ).append( "" + jQuery.type(obj));
});
</script>
</body>
</html>
Write a jQuery code to check if an object is a jQuery object or not.
Reviewed by technical_saurabh
on
May 03, 2021
Rating:
No comments:
Post a Comment