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() );
})