There are two img elements that use the same map with one area. Now, we bind e.g. a click event handler to the area element. Is it possible to determine from the event handler which image instance has been clicked?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Yes, you can determine which image was clicked on by either:
For example, if your HTML looks like:
then the possible solutions are: 1)
2)
Depending on what you want to do after you capture the event, you'll have to return either 'true' to allow the URL to follow through, or 'false' to take an alternate action. |
|||
|
|
|
A possible solution is to use its offsetParent property. This way, I get the parent, which is what I originally needed. Finding the image itself also shouldn't be too difficult, provided that the images are contained in different divs. |
|||
|
|