Skip to content

Instantly share code, notes, and snippets.

@nolanlawson
Created June 21, 2021 18: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 nolanlawson/5240e01436ed2f9232ca755baf740f3f to your computer and use it in GitHub Desktop.
Save nolanlawson/5240e01436ed2f9232ca755baf740f3f to your computer and use it in GitHub Desktop.
event.path
<!doctype html>
<html>
<head>
<title>event.path</title>
</head>
<body>
<h1>event.path</h1>
<button type=button>Click me</button>
<script>
document.querySelector('button').addEventListener('click', e => console.log(e.path))
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment