Last active
January 2, 2020 17:07
-
-
Save itsazzad/18dcfae1087106f40ac2eb1c7390508c to your computer and use it in GitHub Desktop.
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 = ""; | |
document.querySelectorAll("#content .listResults .-job").forEach((item, index)=>{ | |
items+= "\n"; | |
item.querySelectorAll("h3 > span:first-child").forEach((tag)=>{ | |
items+="\n@"+tag.innerText; | |
}); | |
item.querySelectorAll("div > .post-tag").forEach((tag)=>{ | |
items+="\n"+tag.innerText; | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment