Skip to content

Instantly share code, notes, and snippets.

@igorshubovych
Created November 20, 2016 14:44
Show Gist options
  • Save igorshubovych/3af701f8ac820d60b03d8a94fc18dc3e to your computer and use it in GitHub Desktop.
Save igorshubovych/3af701f8ac820d60b03d8a94fc18dc3e to your computer and use it in GitHub Desktop.
Save from ex.ua
var items = $('p > span.r_button_small a');
for (var i = 0, a=[]; i< items.length; i++) {
let item = items[i];
if (item.href && item.href.includes && item.href.includes('load')) {
a.push(item.href);
}
}
console.log(a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment