Is it possible to change a css style through vbscript? The code bellow won't work on windows scripting host:
Dim oIE
Set oIE = CreateObject("InternetExplorer.Application")
oIE.navigate("www.website.com")
Do While oIE.Busy
WScript.Sleep 100
Loop
oIE.document.getElementById("div-id-here").style.backgroundcolor="#ff0000"
backgroundColor(capital C) to get this to work in IE.