I have a HTML element to which I have attached a webkitTransitionEnd event.
function transEnd(event) { alert( \"Finished transition!\" ); } var node =
If you prefer it in JQuery, try this out. Note there is an event param to store the event object and use within the corresponding function.
$("#divId").bind('oTransitionEnd transitionEnd webkitTransitionEnd', event, function() { alert(event.propertyName) });