<input type="range" value="5,17" />
If I try to change the value with $('input').val('8,20'); it doesn’t change…
But on hidden inputs works:
<input type="hidden" value="s" />
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The HTML5
<input type="range" />does only handle one value betweenminandmaxattribute – e.g.:If you want to have the slide handle a min and a max value in one UI-input you could possibly use jQueryUI’s slider: https://jqueryui.com/slider/#range