I have a drop down that I want to slideup when clicked anywhere outside of it (and all it's child elements)
My code seems to not be working :(
$(document).ready(function () {
  $('*').not(".drop").click(function() {
    $('.drop').slideUp('medium', function() {
// Animation complete.
});});});
 
     
    