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

javascript - backbone.js Collection.add() doesn't `construct` (`initialize`) an object -

php - Get uncommon values from two or more arrays -

Adding duplicate array rows in Php -