html - javascript cursor image position -
i change cursor background image file , cursor in top of image
$(".maindiv").attr("style", "cursor: url(./images/myimage.png) ,auto");
how set cursor in bottom of image ?
use .css()
instead:
$(".maindiv").css({cursor: 'url(./images/myimage.png) ,auto'});
Comments
Post a Comment