Comment puis-je détecter quand .click
se déclenche si la zone de texte est déjà focalisée ?
J'ai ce jquery :
$(".status").on("click","textarea",function(){
if ($(this) == "focused") {
// fire this step
}else{
$(this).focus();
// fire this step
}