JSFiddle - React, Tailwind, and code Playground
by Ronny
HTML
<input type="number">
JavaScript
$('input[type=number]').mouseup(function(){
console.log( $(this).val() );
});
by Ronny
<input type="number">
$('input[type=number]').mouseup(function(){
console.log( $(this).val() );
});