Skip to content

Instantly share code, notes, and snippets.

@ituki
Created July 3, 2013 05:31
Show Gist options
  • Save ituki/5915666 to your computer and use it in GitHub Desktop.
Save ituki/5915666 to your computer and use it in GitHub Desktop.
appendした要素をクリックしたときに、$(this)を得るには ref: http://qiita.com/ituki_b/items/6c651f8032db6a7d40ea
$('#list li').live('click', function(){ //
alert($(this));
return false;
});
$('#list').on("click",$('li'),function(e){
alert($(e.target));
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment