user2193887
user2193887

Reputation: 1

custom cursor image

How to apply custom cursor image for listbox dropdown? When css applied as,

body select,
   body option{
   cursor: url(Pointer.cur), auto;
}

Its not applying for the dropdown in chrome browser.

Upvotes: 0

Views: 104

Answers (1)

Rohit Azad Malik
Rohit Azad Malik

Reputation: 32182

Used to this

cursor:url(/img/magnify.cur), -moz-zoom-in, -webkit-zoom-in auto;

You can also see a list of cursor keywords supported by different browsers.

you can used to jquery plugin

Upvotes: 1

Related Questions