このイベント bind :
on focus :
display a link を使用した textarea があり、テキスト領域のより大きなバージョンがポップアップ表示されます。
on blur :
リンクを削除します。
ただし、 onblurがトリガーされたときに既に削除されているため、リンクの「クリック」イベントはトリガーされませんでした。
$("#text-area-new-message").focus(function(){
$("#text-area-new-message").after('<a id="enlarge-text-area" href="#">enlarge text area</a>');
$("#enlarge-text-area").click(function(){
alert('test');
});
});
$("#text-area-new-message").blur(function(){
$("#enlarge-text-area").remove();
});
それを行うにはどうすればよいですか?