JSFiddle - React, Tailwind, and code Playground
HTML
<textarea id='tf'>Welcome* to jQuery</textarea>
JavaScript
$("#tf").on('keyup', function(){
console.log($(this).val().indexOf('*'));
});
<textarea id='tf'>Welcome* to jQuery</textarea>
$("#tf").on('keyup', function(){
console.log($(this).val().indexOf('*'));
});