HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery hasData() Method</h1> <div id="data"></div> <p>First add data() and then check hasData()</p> <button id="myAdd">add data()</button> <button id="myHas">hasData()</button> <script> $(document).ready(function(){ var $data = $('#data'); $("#myAdd").click(function(){ $.data($data, 'test', 1); alert("Data Added, check hasData()"); }); $("#myHas").click(function(){ alert($.hasData($data)); }); }); </script> </body> </html>
OUTPUT
×

Save as Private