JSFiddle - React, Tailwind, and code Playground
by woodroots
HTML
<textarea></textarea>
JavaScript
$(function(){
$('textarea').on('focus',function(){
$('body').append('フォーカスしました');
}).trigger('focus');
});
by woodroots
<textarea></textarea>
$(function(){
$('textarea').on('focus',function(){
$('body').append('フォーカスしました');
}).trigger('focus');
});