Created
November 20, 2016 14:44
-
-
Save igorshubovych/3af701f8ac820d60b03d8a94fc18dc3e to your computer and use it in GitHub Desktop.
Save from ex.ua
This file contains hidden or 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
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