Here is the basic structure of one option, I'm not sure how your questions differ (do they all have 3 options?), So the style will be different, just trying to demonstrate the concept.
I'm not sure what each question consists of, so I placed your content in <div class="question"> and then gave input shortcuts (got a little worse for non-JS users), for example:
<div class="question"> <h2>How long is your hair?</h2> <label><input type="radio" name="71" value="98">Short</label> <label><input type="radio" name="71" value="99">Medium</label> <label><input type="radio" name="71" value="100">Long</label> </div>
Then a little script to convert it to a slider, for example:
$(".question").each(function() { var radios = $(this).find(":radio").hide(); $("<div></div>").slider({ min: parseInt(radios.first().val(), 10), max: parseInt(radios.last().val(), 10), slide: function(event, ui) { radios.filter("[value=" + ui.value + "]").click(); } }).appendTo(this); });
You can try here
source share