Skip to content

Instantly share code, notes, and snippets.

@Blucknote
Created March 2, 2020 07:18
Show Gist options
  • Save Blucknote/5a58f6c2df732e472e5d4a56a6b818d8 to your computer and use it in GitHub Desktop.
Save Blucknote/5a58f6c2df732e472e5d4a56a6b818d8 to your computer and use it in GitHub Desktop.
download xakep magazine from page
jQuery.each(
jQuery('a.download-button'),
function () {
var win = window.open(
jQuery(this).attr('href'),
'_blank'
);
win.focus();
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment