Close div when clicked
Close div when clicked
Out of context: Reply #1
- Started
- Last post
- 25 Responses
- ********0
jQuery ->
$('div').click(function(){
$(this).fadeOut(300)
});- better:
$('html').click(func...
$(this).fadeOut(300)
});fairbaken
- better:
jQuery ->
$('div').click(function(){
$(this).fadeOut(300)
});