Reputation: 1
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
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