JSFiddle - React, Tailwind, and code Playground

HTML

<form>
    <input id="textbox" type="text">
</form>

JavaScript

$("#textbox").on("change", function() {
    $(this).val(function(index, value) {
        return value.replace('Avenue', 'Ave.');
    });
});