Could you help me plaese!
I had to use next jQuery functionality.
elem.parents('.CanvasRoot:first').unbind('click').click(function(){
...
}
<div class="CanvasRoot">
...
</div>
But now, I should add area inside the current div. And I don’t need to that area called click js function.
<div class="CanvasRoot">
<table class="notForClick">
</table>
</div>
How can I prevent that area from clicking?
Thanks!
1 Answer