JSFiddle - React, Tailwind, and code Playground

by tanvir_alam_shawn

HTML

<span>No problem for this one</span>
<input id="replay" type="range" min="0" max="100" step="1" value="0">

<h1 class="nopb"></h1>

CSS

#replay-input, #replay {
  width: 100%;
}

JavaScript

$('#replay').on('input', function (e) {
	$(".nopb").text(e.target.value);
  console.log(e.target.value)
})