Get rid of final piece of inline JS

This commit is contained in:
daudix
2024-10-18 20:49:52 +03:00
parent 732217ccea
commit a05bb5c8f1
2 changed files with 10 additions and 10 deletions

View File

@ -483,16 +483,6 @@ With `range` type:
<input type="range" max="100" value="33" id="range">
<!-- For the demo purposes only -->
<small id="range-value"></small>
<script type="text/javascript">
var slider = document.getElementById("range");
var output = document.getElementById("range-value");
output.innerHTML = slider.value;
slider.oninput = function() {
output.innerHTML = this.value;
}
</script>
<!-- End -->
### Figure Captions (`<figcaption>`)