HTML and JS interesting cases
$(".box").on("webkitTransitionEnd transitionend oTransitionEnd", function (event) {
if (event.originalEvent.propertyName == "width") {
// bla-bla
}
if (event.originalEvent.propertyName == "height") {
// bla-bla
}
});