Skip to content

Instantly share code, notes, and snippets.

@hungryzi
Created January 30, 2015 04:42
Show Gist options
  • Save hungryzi/2c31af9947e3d0ee40d4 to your computer and use it in GitHub Desktop.
Save hungryzi/2c31af9947e3d0ee40d4 to your computer and use it in GitHub Desktop.
Download All snippet
var links = document.getElementsByTagName('a')
var map = [].map
var hrefs = map.call(links, function(l) {return l.href})
hrefs = hrefs.filter(function(h){ return h.match('mobi')})
for (var i=100; i < 300; i++) {
window.open(hrefs[i])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment