Use jQuery to alter css for "html" and "*"
- by Chris
Apologies if this is incredibly easy but I want to be able to do the following in jQuery.
Current CSS
* { cursor: url('/web/resources/graphics/blank.cur'), pointer; }
html { cursor: url('/web/resources/graphics/blank.cur'), pointer; }
Desired CSS change (through jQuery only)
* { cursor: url('/web/resources/graphics/blankDot.cur'), pointer; }
html { cursor: url('/web/resources/graphics/blankDot.cur'), pointer; }