I have a container with many images. Instead of adding a listener for click and other mouse events on each of the images, I would like to only listen for those events on the parent of the image.
Is that possible?
|
I have a container with many images. Instead of adding a listener for click and other mouse events on each of the images, I would like to only listen for those events on the parent of the image. Is that possible? |
|||||||||
|
|
|||
|
If i am understanding your question correctly, that is totally possible. So assuming you have something like:
Then you should be able to bind the event listener to the parent thusly:
and then your handler should look something like
You can also combine this with the But its difficult to say if you need to use those without knowing more about what you are trying to do. But hopefully that will give you a push in the right direction. |
|||