javascript - html-5 range slider max and min value -


i using html-5 slider

 <input type="range" .. /> 

i want slider's min , max values on left , right side respectively . how can this?

try

<input type="range" min="20" max="80" /> 

demo

also following attributes can applied input type="range"

  • max - specifies maximum value allowed
  • min - specifies minimum value allowed
  • step - specifies legal number intervals
  • value - specifies default value

Comments

Popular posts from this blog

JQuery Autocomplete without using label, value, id -

c++ - Accessing inactive union member and undefined behavior? -

JAVA - what is the difference between void and boolean methods? -