lrtad
lrtad

Reputation: 257

set jquery UI slider scrollbar vertically?

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

Answers (2)

Haroldo Gondim
Haroldo Gondim

Reputation: 154

If you mean the slider, assign: orientation: 'horizontal'

Upvotes: 0

Chirag Vidani
Chirag Vidani

Reputation: 2587

Set orientation property of slider to vertical.

 $( "#YourHtmlControlId" ).slider({
   value: 60,
   orientation: "horizontal",
   range: "min",
   animate: true
 });

Refer this link

Upvotes: 2

Related Questions