Skip to content

Instantly share code, notes, and snippets.

View VGoshev's full-sized avatar

Vladimir Goshev VGoshev

View GitHub Profile
function whichTransitionEvent(){
var t;
var el = document.createElement('fakeelement');
var transitions = {
'transition':'transitionend',
'MSTransition':'msTransitionEnd',
'MozTransition':'transitionend',
'WebkitTransition':'webkitTransitionEnd'
}