views:

138

answers:

0

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.

The site in question is here - the sliders work in Chrome but not in Safari.