Skip to content

Instantly share code, notes, and snippets.

@josephpconley
Last active August 29, 2015 14:04
Show Gist options
  • Save josephpconley/6649caf1965a3ed55ffb to your computer and use it in GitHub Desktop.
Save josephpconley/6649caf1965a3ed55ffb to your computer and use it in GitHub Desktop.
Programmatically click on several links using jquery/javascript
$("a[href^='freedownload']").each(function(a){
window.open($(this).attr("href"));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment