JSFiddle - React, Tailwind, and code Playground

by abogoud

HTML

<textarea></textarea> <span id='remainingC'></span>

JavaScript

$('textarea').keypress(function(){
    if(this.value.length > 160){
        return false;
    }
    $("#remainingC").html("Remaining characters : " +(this.value.length));
});