JSFiddle - React, Tailwind, and code Playground
by rodrigonery
HTML
<input class="slider_output" type="text" id="textInput" value="0">
<input type="range" class="ranger_style" name="rangeInput" value="0" min="0" max="100" onchange="updateTextInput(this.value);">
<input class="slider_output" type="text" id="textInput" value="0">
<input type="range" class="ranger_style" name="rangeInput" value="0" min="0" max="100" onchange="updateTextInput(this.value);">
JavaScript
function updateTextInput(val) {
document.getElementById('textInput').value=val;
}