clickable div in html code example
Example 1: click through div html
pointer-events: none;
Example 2: make div clickable
<div onclick="location.href='#';" style="cursor: pointer;">
</div>
pointer-events: none;
<div onclick="location.href='#';" style="cursor: pointer;">
</div>