I’m using a jquery countdown timer and it works everywhere, even in IE7 but not in IE9 or IE8. I’ve been racking my brain and I can’t figure out the problem. The divs that are supposed to rotate aren’t, is my guess, but I don’t understand why it would work in IE7 of all places but not IE9. If there is more than half the time left for the given unit of time it shows half of the green circle, if it’s less than half it disappears an only leaves the gray background.
You can see the test page here: http://tiffanyisrael.com/construction/
I also set up a jsfiddle: http://jsfiddle.net/Cx2ut/1/
Any help or suggetions would be greatly appreciated.
Okay, I figured out IE9, now I have to figure out IE8 🙁
else if(element.css('ms-transform')!==undefined)
element.css('ms-transform',rotate);
This looks for ms-transform in the element and adds it with the rotate angle, ms-transform is how IE9 rotates elements
Here’s the update jsfiddle: http://jsfiddle.net/Cx2ut/3/
An IE8 fix coming soon hopefully!