transition event listener does not work

Solutions on MaxInterview for transition event listener does not work by the best coders in the world

showing results for - "transition event listener does not work"
Laurence
30 Mar 2019
1try 'webkitTransitionEnd' instead of 'transitioned'
2
3element.addEventListener( 'webkitTransitionEnd',(e)=> { 
4console.log( "Finished transition!" );
5
6} );