When a user clicks a button...a div slides down...
$(document).ready(function(){
$("#friend_requests_container").click(function(){
$("#friend_requests").slideDown(500);
});
});
However, what I want to do is when the user clicks anywhere else on the page, the div slides back up EXCEPT if they click on the button to reveal the div.
What i tried was this.
$(document).ready(function(){
$("#friend_requests_container").click(function(){
$("#friend_requests").slideDown(500);
}, function(){
$("#friend_requests").fadeOut(500);
});
});
but that didnt seem to work... Any ideas? Thanks :)