tags:

views:

59

answers:

1

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; }
+7  A: 
$("*").css("cursor:", "url('/web/resources/graphics/blankDot.cur'), pointer")

i think html is already covered by the *

meo
@meo Thanks this works but you need to drop the colon `$("*").css("cursor", "url('/web/resources/graphics/blankdot.cur'), pointer")`
Chris