JSFiddle - React, Tailwind, and code Playground

by woodroots

HTML

<textarea></textarea>

JavaScript

$(function(){
  $('textarea').on('focus',function(){
    $('body').append('フォーカスしました');
  }).trigger('focus');
});