Getting this error on this line of code:
document.getElementsByTagName("table")[0].style.setProperty("background-color", "#D19000", "important");
Object doesn't support property or method 'setProperty'
Only in IE8 , go figure, anyone have any idea how to fix it ?
For older versions of Internet Explorer you will need to use this syntax:
elem.style.backgroundColor = "#D19000";
elem.style.color = "red";
Note that any property that is hyphenated will need to be in camelCase.