Skip to content

Instantly share code, notes, and snippets.

@onozaty
Last active August 29, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save onozaty/f27f1856a7b33cd202a9 to your computer and use it in GitHub Desktop.
Save onozaty/f27f1856a7b33cd202a9 to your computer and use it in GitHub Desktop.
EventHandler2
document.addEventListener('change', function(e) {
var target = event.target || event.srcElement;
if (target.id == 'selected_id') {
// 処理
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment