- From: Jake Archibald <notifications@github.com>
- Date: Thu, 14 Dec 2017 13:05:18 +0000 (UTC)
- To: whatwg/dom <dom@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 14 December 2017 13:05:41 UTC
@WillsB3 lets say you wanted to track all link clicks within a container element: ```js container.on('click').filter(e => e.target.closest('a')).subscribe(e => { // … }); ``` -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/whatwg/dom/issues/544#issuecomment-351705380
Received on Thursday, 14 December 2017 13:05:41 UTC