Home › Forums › Support › Feasibility of using sliders and the mouse › Reply To: Feasibility of using sliders and the mouse
November 18, 2014 at 10:50 am
#649
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)
-
This reply was modified 8 years, 10 months ago by
Erwin Haasnoot.
-
This reply was modified 8 years, 10 months ago by
Erwin Haasnoot.