Skip to content

Latest commit

 

History

History
27 lines (25 loc) · 402 Bytes

File metadata and controls

27 lines (25 loc) · 402 Bytes

Section 6.1: Delegated Events

<html>
  <head>
  </head>
  <body>
    <ul>
      <li>
        <a href="/route-1">Link 1</a>
      </li>
      <li>
        <a href="/route-2">Link 2</a>
      </li>
      <li>
        <a href="/route-3">Link 3</a>
      </li>
    </ul>
  </body>
</html>
$('ul').on('mouseover', 'a', function () {
  console.log(this.href); // show route URL
});