I have an element positioned on top of another element, how do I ignore the click capture of the top element and pass it to the one below it?
$('a[title]').each(function (index) {
$(this).after('<div class="overlay" style="position:absolute;background:url(../Images/space.gif);width:100px;height:100px;top:0;left:0;z-index:300"></div>')
})
The reason is because this bit of code is preventing the title tooltip from popping-up. The hover pseudo-class still works on the link behind it because it is attached to the element containing them both, like so:
li:hover a { ... }