<html>
<body>
<p>This example demonstrates how to dynamically update a slider value with oninput.</p>
<input type="range" oninput="myFunction(this.value)">
<p id="demo"></p>
<script>
function myFunction(val) {
document.getElementById("demo").innerHTML = val;
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_oninput_slider by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:02:56 GMT -->
</html>