Simple problem with what seems to be an incredibly difficult solution.
I have a DIV wrapper with a z-index that is lower than a DIV that is inside the wrapper. (basically a background with a DIV on top of it)
When I run the console.log() on the wrapper, and the DIV, I notice that when I click on the wrapper it only logs the click for the wrapper.
But when I click on the DIV inside the wrapper, it logs clicks for both the wrapper and the DIV at the same time.
How the heck do I set this up so that when I click on the DIV inside the wrapper, it will only register a click for that DIV and not the wrapper as well??