Reputation: 1721
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
Reputation: 11
Try this:
<style type="text/css">
.ui-slider .ui-slider-handle
{
cursor: pointer;
}
</style>
Upvotes: 1