I have a the following situation: a div, with bars in it (divs with a certain height) to show a chart.
On top of the main div with the bars, an image a mask is placed, so you can see figures instead of bars. (I have a man and a woman to show stats, see attached image for example).
The bars are attached to a mousemove event to show information about the bars in a tooltip.
If I hover over the bars my mousemove does not show, because the image is blocking it.
Is it possible to hover over the image, and still have the mousemove event bound to the bars to get the information I want? The end result is to show a tooltip with the info from the bars.

You could make some additional divs on top of the image, and use them for the hovering. But that could get a bit messy.
Or you can make a HTML image map with four areas, each with an onmouseover property, which would be a lot cleaner:
The coords here are most likely wrong, I’m not on my computer so I can’t test it…