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 clicked, it should add a css rule to #imgwrapper like this:
#imgtarget, #imgwrapper img {cursor:crosshair;}
how should i do it??
i tried jquery .css() api but it aint working..
See the $.css() function
$('a.whatever').click(function() {
$('#imgtarget').css('cursor' , 'crosshair');
$('#imgwrapper img').css('cursor', 'crosshair');
});
the following code should work.
$('#imgwrapper').css('cursor','crosshair')
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With