要素をクリックしたときにトリガーされるイベントを取得できません。この要素は、td要素にカーソルを合わせた場合にのみ表示されます。
//Hovering over a td element displayed a Span
$('td').hover(
function() {$(this).append('<span class="editCell">hello</span>')},
function() {$(this).find('span:last').remove()}
)
//Clicking on that span, it's supposed to trigger alert. But it doesn't.
$('.editCell').click( function(){
alert('hello');
})