Is there an efficient way in jQuery to detect if anything other than a specific element (and it's children) has been clicked ??
<body>
  <header></header>
  <p>stuff<p>
  <div class="floating-form">
    <form>more stuff</form>
  </div>
  <footer></footer>
</body>
Whats the best way to remove the floating form, by listening for a click on anything other than the floating form?
 
     
     
     
    