Simple javascript rang slider

<input id="ageInputId" max="100" min="1" name="ageInputName" type="range" value="24" /> <output id="ageOutputId" name="ageOutputName">24</output>
<form name="registrationForm">
    <input type="range" name="ageInputName" id="ageInputId" value="24" min="1" max="100" oninput="ageOutputId.value = ageInputId.value">
    <output name="ageOutputName" id="ageOutputId">24</output>
</form>

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes:

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>