i got a css rule like this:
#imgwrapper {display: block;position: relative;width:auto;height:auto;}
so i got a hyperlink that when it\'s cl
the following code should work.
$('#imgwrapper').css('cursor','crosshair')
See the $.css() function
$('a.whatever').click(function() { $('#imgtarget').css('cursor' , 'crosshair'); $('#imgwrapper img').css('cursor', 'crosshair'); });