im building an analog clock using JavaScript, i know it will be alot easier if i do it with jQuery but it's not an option here.
Everything's working in Chrome and Safari(meaning the webkit browsers) but not in any of the others.
Here is my tick method, basically it rotates the image according to the time.
function tick(deg, elmt){
document.getElementById(elmt).setAttribute(
"style", "transform:rotate(" + deg + "deg);"
+ "-moz-transform: (" + deg + "deg);"
+ "-o-transform: (" + deg + "deg);"
+ "-webkit-transform:rotate(" + deg + "deg);"
+ "filter:progid:DXImageTransform.Microsoft.BasicImage(" + deg + "deg);"
);
}
any suggestion to make it work?