I have a range input and I am looking to add small vertical lines at intervals of 10 on the horizontal line representing each default step.
The range of my input is from 0 to 40 and I would like to have small vertical lines at 10, 20, and 30. I need to achieve this without using jQuery or any external library due to restrictions in the framework I am using.
<input id="myRange" step="10" name="foo" type="range" min="0" max="40" value="{!v.resourseHours}" class="slider" onchange="{!c.resourseInput}" />
I am aiming for something similar to the image at the bottom, with the numbers 10, 20, and 30 displayed on top of each line.