Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 402 Bytes

range-input.md

File metadata and controls

17 lines (12 loc) · 402 Bytes

Range input

Display the selected value

<form>
    <label for="flying">Flying Skill Level</label>
    <input name="flevel" id="flying" type="range" min="0" max="100" value="0">
    <output for="flying" name="level">0</output>/100
</form>

Note: javascript is required to update dinamically the <output> value