In HTML I have this code...
<input type="range" min="0" max="100" value="<?php echo $value;?>" readonly>
What I want is, that if I make the value, for instance, 120; that the bar goes beyond it's limit and shows me 120%. So I want it to go outside the box. I hope you understand the question like this. The php code is for outputting the variable, that already works. It wil also output a 120, but of course the input range slider won't accept that.
I hope you can help me.
-Joost-