I've created a tab style menu for my website. The menu includes a bunch of images placed in an absolute position, with different z-index's. The tabs are placed under the main image, so I used the webkit rule pointer-events: none;, which works great in firefox and chrome, but not in IE. So for IE, I'm creating a top level div overlay for each tab so I can control clicks and rollovers via these div's.
The issue is that, for some reason I cannot seem to get the .click() function to work, even when the div is on top of everything. I've tested it with .hover, and that works just fine. The only time I can get .click() to work is when I bring the lower tab layer, up to the top (which has nothing to do with the hover layers). Here is my code:
HTML:
<div id="hover-home"></div>
<div id="hover-ss"></div>
CSS:
#hover-home {
height: 26.5px;
width: 91px;
position: absolute;
top: 109px;
left: 325px;
z-index: 100000;
border: 1px solid black;
}
#hover-ss {
height: 26.5px;
width: 124px;
position: absolute;
top: 50px;
left: 419px;
z-index: 100001;
border: 1px solid black;
}
jQuery:
$( document ).ready(function() {
$("#hover-home").click(function(){
alert("Works!");
});
$("#hover-ss").click(function(){
alert("Works!");
});
});
Underlying Tabs HTML:
<div id="btn-index" class="<? echo $tab_home; ?> tab menu_link" style="height: 26.5px; width: 75px; z-index: <? echo $zi_home; ?>; position: absolute; top: 109px; left: 325px;">
<a href = "index.php">Home</a>
</div>
<div id="btn-ss" class="<? echo $tab_ss; ?> tab menu_link" style="height: 26.5px; width: 108px; z-index: <? echo $zi_ss; ?>; position: absolute; top: 109px; left: 419px;">
<a href = "screenshots.php">Screen Shots</a>
</div>
I've tried to use .on('click', function ({, but didn't have any success with that either. Has anyone else ran into this issue?