Skip to content

Instantly share code, notes, and snippets.

@dominikbulaj
Last active October 12, 2016 13:34
Show Gist options
  • Save dominikbulaj/10fb77881eb3521a027e599ba61af79f to your computer and use it in GitHub Desktop.
Save dominikbulaj/10fb77881eb3521a027e599ba61af79f to your computer and use it in GitHub Desktop.
Handle click inside iframe #ES2015 #ES6 code
document.querySelector('iframe#abc123').contentDocument
.querySelectorAll('a')
.forEach(a => a.addEventListener('click', () => console.log('CLICK!')));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment