JSFiddle - React, Tailwind, and code Playground

by alexdickson

HTML

<input type="text" id="skillcount" name="skillcount" value="3"/>

JavaScript

$('#skillcount').change(function() {
    var value = parseFloat($(this).val()) + 1;
    alert(value);
});