The completion of a CSS Transition generates a corresponding DOM Event. An event is fired for each property that undergoes a transition. This allows a content developer to perform actions that synchronize with the completion of a transition.
You can set a handler for a DOM event
that is sent at the end of a
transition. The event is an instance
of WebKitTransitionEvent and its type
is webKitTransitionEnd in JavaScript.
box.addEventListener( 'webkitTransitionEnd',
function( event ) { alert( "Finished transition!" ); }, false );
There is a single event that is fired when transitions complete. In Firefox, the event is transitionend, in Opera, oTransitionEnd, and in WebKit it is webkitTransitionEnd.
There is one type of transition event
available. The oTransitionEnd event
occurs at the completion of the
transition.
The MSTransitionEnd event occurs at the completion of the transition. If the transition is removed before completion, the event will not fire.
SO: How do I normalize CSS3 Transition functions across browsers?