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

Popular posts from this blog

SPSS keyboard combination alters encoding -

Socket.connect doesn't throw exception in Android -

iphone - How do I keep MDScrollView from truncating my row headers and making my cells look bad? -