I am working on a page using only html5 and jquery, and I have a range input as follows:
<input id="mySlider" type="range" class="test" min="2" max="32" step="2" value="10" />
Is there any way to dynamically alter the min of this input? I've tried referencing / setting by using getElementByID and trying to access the min attribute (the same way you could do for .value), but this doesn't appear to work. Thanks!