I want a vertical slider on my site, I am using ruby 4.0 and I can use
<%= f.range_field :value, :min => 0, :max => 250 %>
to display what I want, but I want this bar to be vertical and not horizontal (default?), anyways I tried, of course to google the answer but didn't find a clue about how to achieve this, I went to API documentation at api.rubyonrails.org and all I found was "Accepts same options as range_field_tag" but then I didn't find range_field_tag anywhere, I wonder if I will have to implement a third party solution to this... if so, do you recommend any gem or jquery like library?
thanks in advance!