I wonder if there are some predefined event like the webkitTransitionEnd
in Chrome in the mozilla and opera browser?
How can I also detect of the browser is webkit enabled and CSS3 ?
I wonder if there are some predefined event like the webkitTransitionEnd
in Chrome in the mozilla and opera browser?
How can I also detect of the browser is webkit enabled and CSS3 ?
According to the MDN Doc Center there is such an event:
There is a single event that is fired when transitions complete. In Firefox, the event is
transitionend
, in Opera,oTransitionEnd
, and in WebKit it iswebkitTransitionEnd
.