Skip to content

Instantly share code, notes, and snippets.

@parkerproject
Created July 8, 2015 01:38
Show Gist options
  • Select an option

  • Save parkerproject/a68062d234baf9bcc14d to your computer and use it in GitHub Desktop.

Select an option

Save parkerproject/a68062d234baf9bcc14d to your computer and use it in GitHub Desktop.
extracting emails
var emails = querySelectorAll('.email);
var emailsArr = [].slice.call(emails);
var d = []; emailsArr.forEach(function(email){ d.push(email.textContent)});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment