.click
テキストエリアが既にフォーカスされている場合、イベントがいつトリガーされるかを検出するにはどうすればよいですか?
私はこのjqueryを持っています:
$(".status").on("click","textarea",function(){
if ($(this) == "focused") {
// fire this step
}else{
$(this).focus();
// fire this step
}