JSFiddle - React, Tailwind, and code Playground
by bullrout
HTML
20 <input type="range" min="20" max="80" /> 80
JavaScript
$("input[type=range]").on("mouseup", function() {
alert( $(this).val() );
})
by bullrout
20 <input type="range" min="20" max="80" /> 80
$("input[type=range]").on("mouseup", function() {
alert( $(this).val() );
})