I have a divBelow that has various anchors... I have a divOver with a higher z-index and transparency. However, because I placed div over div, all those anchors from the div below are not clickable anymore. I tried with other solutions, such as assigning divBelow pseudo :after transparency:
#divBelow:after {
content:'';
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
background: rgba(255, 255, 255, 0.5);
}
but it didn't show any transparency, so I used a divOver with higher z-index, but functionality is gone. I tried assigning divOver this:
$('#divOver').click(function(e) {
e.bubbles = true;
});
but it also didn't work.
What is the simplest solution? Thanks