Skip to content

Instantly share code, notes, and snippets.

@turboBasic
Created April 17, 2026 07:24
Show Gist options
  • Select an option

  • Save turboBasic/c53c9726b1b05f63f70f7c08f8e9122f to your computer and use it in GitHub Desktop.

Select an option

Save turboBasic/c53c9726b1b05f63f70f7c08f8e9122f to your computer and use it in GitHub Desktop.
Code snippets for browser's console #javascript #js #browser

Code snippets for querying web pages in a browser's console

Select contents of all elements of <span>1234567</span> format

[...document.querySelectorAll('span')]
  .filter(el => /^\d+$/.test(el.textContent.trim()))
  .map(el => el.textContent.trim())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment