I have a form which is rendered with radio buttons like so:
<h2>How long is your hair?</h2>
<input type="radio" name="71" value="98">Short
<input type="radio" name="71" value="99">Medium
<input type="radio" name="71" value="100">Long
There are about 15 questions like this, and I would like to have the whole form rendered with sliders, using JQuery (Jquery UI seems like the most likely candidate).
I have found a few plugins for converting select boxes to sliders (e.g. selectToUISlider) but none for radio buttons.
I'm sure it is possible to roll my own somehow using the standard UI Slider, but I don't really know where to start. Has anyone already made a plug in to achieve this?