There is this known Android Browser Bug.
When you have some clickable content like <a>, <input> or <area> and before this you have an absolutely positioned element with a bigger z-index, there is the wrong behavior of 'click-through'.
I click on the area where the clickable element is behind the front element. In other browsers there is the right behavior that the click does not go through the front element. But only in Android Browser you can click through the front element and activate the element behind. This is a known bug and you cannot avoid it. It's even in newer versions (I test on 2.3.3 in the official Android emulator).

There are some workarounds described in some forums but none of them worked for me. I tried to put an <iframe> or an <a> between front and back I tried to change the DOM so maybe the browsers state is refreshed I tried to have the back elements be positioned as well None worked

I'm especially having problem with the image map's area elements.

Has anyone had the same issue and managed to work around it? I'm specifically interested in solutions which are tested against image maps.

link|improve this question

73% accept rate
feedback

1 Answer

I am wondering about a few things here. First, what is the purpose of having an overlaid image and using the image maps? I see you're including jQuery - can you use the hover event with jQuery to change the orientation of the images and do the swap? What about attaching to the click event for the image map, and checking to see if the lightbox is open. If it is, then return false;.

Just trying to think out loud. Sometimes another take on it can be helpful.

link|improve this answer
I have a image map. Clicking on it triggers the lightbox. Lightbox is before the image map, but clicks go through the lightbox on the image map. This is buggy, wrong behaviour. And the other question. I use jQuery for the hover. The hovers work fine. It's android that doesn't work fine. – yunzen Jan 29 at 22:48
You get the bounty as you are the only one concerned :( – yunzen Jan 30 at 9:48
Would there be the possibility of using the return false; in the image map click's handler, or am I missing something? – JMax Jan 30 at 15:45
The Problem is, that the clickable elements behind gain focus at all. I have a form inside the lightbox an you are not able to click on the form's elements, because the click bleeds through to the elemnt behind. – yunzen Jan 31 at 7:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.