Skip to content

Instantly share code, notes, and snippets.

Created August 5, 2017 13:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/e3d1df481376c6e231ea740744464a46 to your computer and use it in GitHub Desktop.
Save anonymous/e3d1df481376c6e231ea740744464a46 to your computer and use it in GitHub Desktop.
event propagation in js
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>event propagation in js </title>
</head>
<body>
<div id="wrapper">
<ul id="listner">
<li> <div id="one" > </div> </li>
<li> <div id="one2"> </div> </li>
<li> <div id="one3"> </div> </li>
<li> <div id="one4"> </div> </li>
<li> <div id="one5"> </div> </li>
<li> <div id="one6"> </div> </li>
<li> <div id="one7"> </div> </li>
<li> <div id="one8"> </div> </li>
<li> <div id="one9"> </div> </li>
</ul>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment