Reputation: 257
I want to use the jquery UI slider scrollbar.
in the jquery UI site I see an example only for a horizontal slider scrollbar.
is it possible to set it up also vertically?
Upvotes: 0
Views: 1723
Reputation: 2587
Set orientation property of slider to vertical.
$( "#YourHtmlControlId" ).slider({
value: 60,
orientation: "horizontal",
range: "min",
animate: true
});
Refer this link
Upvotes: 2