I'm trying to catch an event when a user clicks a blank space on the page with jQuery. For example, lets say you have the following:
<html>
<head>
<title>Test</title>
</head>
<body>
<p>Here's some text!</p>
<body>
</html>
I want to catch the event when the user clicks on anything but the p tag.
Is there a way to catch something like this?