Created
July 8, 2015 01:38
-
-
Save parkerproject/a68062d234baf9bcc14d to your computer and use it in GitHub Desktop.
extracting emails
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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