Reply To: Feasibility of using sliders and the mouse

Home Forums Support Feasibility of using sliders and the mouse Reply To: Feasibility of using sliders and the mouse

#649
Erwin Haasnoot
Keymaster

Hi Poppy,

If you really require sliders as a response method, you can also implement your own slider using this tutorial, just add the HTML to your question html source:
http://webtutsdepot.com/2010/04/24/html-5-slider-input-tutorial/

Just make sure you also set the trial data ‘onchange’, so like this:

<input type="range" min="0" max="50" value="0" step="5" onchange="showValue(this.value); QRTE.setTrialData('SliderValue',this.value)" />

(The code is a bit messed up due to this forum, so make sure you change the double quotes into the proper quotes expected by JS)