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> <style> div{ border: 1px solid black; padding:10px; } </style> </head> <body> <h1>jQuery is() Method</h1> <div> <p>Click on the button to check whether 'div' is a parent of 'p'.</p> </div> <button>Click Me</button> <script> $(document).ready(function(){ $("button").click(function(){ alert($("p").parent().is("div")); }); }); </script> </body> </html>
OUTPUT
×

Save as Private