When user clicked my <input>so will show some <div>
Then user clicked some another element agian like <body> or another div so hide it
$("input").click(function(){
$("div").fadeIn();
}).not(this).click(function(e){
$("div").fadeOut();
});
Playground : http://jsfiddle.net/Zf34Q/
My code do fadeIn() & fadeOut() in same time 🙁
jQUery
Fiddle – http://jsfiddle.net/Zf34Q/1/
Edit
Down voters, im sorry I didnt read the question properly, updated my answer now