Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the Document</title> <style> div,p,span { padding: 30px; display: block; border: 3px solid green; } </style> <script src="https://code.jquery.com/jquery-3.5.0.min.js"></script> </head> <body> <div id="divId"> <p id="pId"> <span id="spanId">Click anywhere.</span> </p> </div> <script> $(document).ready(function() { $(document).click(function(event) { alert("Clicked: " + event.target.nodeName + ", id: " + event.target.id); }); }); </script> </body> </html>