I added a transitionend
event listener to a div
. This div
has children who have transition on some elements. I want the transitionend even
Events are bubbling by default, meaning that they will be "transmitted" to the parent element until they hit the body or a handler that will stop them.
You can either :
If you'd show us some code, it would be easier to help you, depending on your current implementation.