I have a HTML element to which I have attached a webkitTransitionEnd event.
function transEnd(event) { alert( \"Finished transition!\" ); } var node =
just remove the event:
var transEnd = function(event) { event.target.removeEventListener("webkitTransitionEnd",transEnd); };
it will fire for the first property and not for the others.