Jquery- Hide div
Posted
by Pankaj
on Stack Overflow
See other posts from Stack Overflow
or by Pankaj
Published on 2010-05-28T10:40:57Z
Indexed on
2010/05/28
10:41 UTC
Read the original article
Hit count: 168
jQuery
I have a div inside form something like
<form>
<div>
showing some information here
</div>
<div id="idshow" style="display:none">
information here
</div>
</form>
i am population information inside div(idshow) on some button click event. what i want whenever i ill click outside div(idshow), it should be hide. just like i click on menu then menu is display and when i click outside menu it goes hide. I need everything using jquery
© Stack Overflow or respective owner