views:

37

answers:

1

Hi Does anybody know of either a Jquery or native JS way to enable mouse events through layers? e.g. enable a link underneath a div.

Other solutions but cannot use in my case:

The simple way, although using not really supported 'pointer-events' http://hacks.mozilla.org/2009/12/pointer-events-for-html-in-firefox-3-6/

A ExtJS solution: vinylfox.com/forwarding-mouse-events-through-layers/

A: 

You could try using jquery to change the z-index of the div when you hover over it, so that the link is temporarily above the div while hovering over said div.

Seth Archer