So if I was to write this as a class in css I'd get something like:
.cursorChange {
cursor: move; /*IE*/
cursor: grabbing; /*Mozilla*/
cursor: -webkit-grabbing; /*Chrome*/
}
However I want to apply these styles inline with javascript at the moment of grabbing the element. now a line like this:
document.getElementById('foo').style.cursor = "move";
Works, obviously, but how do I add more then one value to this node? If I just write grabbing, IE has no fallback, mozzila doesn't recognize it either, is there a way to add multiple values here?
P.S. cannot change the entire stylestring because it has more then just cursor on it. I need this to be inline, not a class due to how the css is written.