Skip to content

Instantly share code, notes, and snippets.

@sftsk
Created August 2, 2019 10:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sftsk/391dad997f86869dccc3b36ff380dc00 to your computer and use it in GitHub Desktop.
Save sftsk/391dad997f86869dccc3b36ff380dc00 to your computer and use it in GitHub Desktop.
js snippets :)
# if click on table get text
document.querySelectorAll("#ccTableCollapse td").forEach(function(company) {
company.onclick = function(){alert(this.textContent);};
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment