step attribute not working with HTML5 <input type="range"> on Safari
Posted
by Claudiu
on Stack Overflow
See other posts from Stack Overflow
or by Claudiu
Published on 2010-06-05T18:26:18Z
Indexed on
2010/06/05
18:32 UTC
Read the original article
Hit count: 178
Are there known issues with range inputs not working fully on Safari? I have the following input element:
<input type=?"range" min=?"0" max=?"360" step=?"0.0001" value=?"0">?
On Chrome, the input goes according to the step variable. On Safari, it only goes by integer values. Even setting the step to 10 still makes it go by increments of 1.
I'm confused because I thought Chrome and Safari both used WebKit.
© Stack Overflow or respective owner