Is it possible in JavaScript to know if a CSS property is supported by the client browser? I\'m talking about the rotation properties of CSS3. I want to execute some functio
May be try this?
var temp = document.createElement('div'); var isSupport = temp.style['propName'] != undefined;