The Most Secure Cross Browser Testing Platform since 2012

Blog

Cross Browser Range Input

shutterstock_234378844
BLOG / Web Development

Cross Browser Range Input

Range input is the form field type that allows the user to select a value using a slider widget.

Browser Support

Range input is already supported by all major browsers so it should be really easy to get it working cross-browser.

Code Example

You can use Range input like this:

<input type="range" id="weight" min="10" value="10" max="2000" step="100">

More Information

More information can be found here.