JSFiddle - React, Tailwind, and code Playground

by Johan Vandeplas

HTML

<textarea id='tf'>Welcome* to jQuery</textarea>

JavaScript

$("#tf").on('keyup', function(){
    console.log($(this).val().indexOf('*'));
});