So I'm attempting to make an li element into a clickable link by absolutely positioning an a element over it with 100% height and width. This worked fine and was a relatively simple solution for Chrome and FF, but in IE9, the other elements behind the link are still selectable, and so the link is not clickable wherever there is another element behind it.
Here's a fiddle of the issue, which works as expected in Chrome and FF, but not in IE9: http://jsfiddle.net/DsshY/5/
I referred to Make a div into a link first, and tried putting an empty span in the link, but that did not work. I've tried several combinations of positions and z-indexes, and even wrapped the other content in a div with a z-index lower than the link, but to still no avail.
I'm hoping it's just something simple I'm missing, because I'd rather not have to resort to using Javascript to make clicking the li element a "link," though I know that's probably a solution.