Last active
December 17, 2015 20:29
-
-
Save ramayac/5667939 to your computer and use it in GitHub Desktop.
"One liner" para obtener la lista de videos de la p'agina que estas viendo en Vimeo.
This file contains 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
document.querySelectorAll("li a[title]").forEach(function(entry){ console.log(entry.href); }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment