user882196
user882196

Reputation: 1721

Jquery ui slider handle on over display hand

I have a jquery UI Slider. When i take my mouse over the slider handle it should display a hand pointer.It's not displaying right now. How can i display hand pointer..?

Upvotes: 0

Views: 1039

Answers (1)

Kobzol
Kobzol

Reputation: 11

Try this:

<style type="text/css">
    .ui-slider .ui-slider-handle
    {
        cursor: pointer;
    }
</style>

Upvotes: 1

Related Questions