I have a jquery drop down that activates and deactivates when you click the header for the drop down
$j('#category_header').click(function() {
$j('#category_dropdown').slideToggle("fast");
return false;
});
but I want it to also close when I click anywhere on the page that isnt the drop down. How do I go about doing that?