This may be a very simple but never used this type of things so no idea how to do.
I am using fadeToggle to show hide div an
$('#account-toggle').click(
function(){
$('#account-toggle').toggleClass('account-active');
$('.account-group').fadeToggle('fast');
});
It is working fine.. (obviously nothing complex :P ) now what I want is to hide it when user click elsewhere on the screen.
Can anyone help me to make it happen?... thanks a lot