I'm using jQuery UI to create a vertical input-range slider (this style to be exact).
I would rather use a more lightweight framework like Zepto, or of course native JS to create this slider.
My specific use-case is for iPad (iOS 4.3+) only, so only webkit-support is required. CSS3 styling of <input type="range" />
is not an option because it cannot be styled in vertical orientation, and rotate(90deg)
doesn't behave correctly on iOS. Also, iOS 4.3 does not support it at all.
Can anyone point me to a better solution?