Skip to content

Instantly share code, notes, and snippets.

@itsazzad
Last active January 2, 2020 17:07
Show Gist options
  • Save itsazzad/18dcfae1087106f40ac2eb1c7390508c to your computer and use it in GitHub Desktop.
Save itsazzad/18dcfae1087106f40ac2eb1c7390508c to your computer and use it in GitHub Desktop.
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