I need to do this:
document.styleSheets[i].rules[1].style.cssText = "cursor: url(images/grabbing.cur), default !important;";
and if I'm checking:
alert(document.styleSheets[i].rules[1].style.cssText);
its giving: cursor: !important
Why is it not setting the whole string in this css?
It's a problem in Internet Explorer only, it works in Firefox.