I have some elements which i can select with .click() function and they became highlighted. There is menu above them with some actions. I want to cancel highlight when I click any element but not menu.
Structure:
<body>
<div id="menu">
</div>
<div id="elements">
/* selectable elements here */
</div>
</body>
I tried to bind $("body *").not("#menu").click(...); but when I click on #menu then body's onclick event fired too because #menu is body's children.
Help me please!