Skip to content

Instantly share code, notes, and snippets.

@andresgallo
Created December 3, 2025 17:31
Show Gist options
  • Select an option

  • Save andresgallo/8a585cb9003dc66dcc460e7a1598d1ec to your computer and use it in GitHub Desktop.

Select an option

Save andresgallo/8a585cb9003dc66dcc460e7a1598d1ec to your computer and use it in GitHub Desktop.
// Select all meta tags with property attribute starting with "og:"
const ogTags = document.querySelectorAll('meta[property^="og:"]');
ogTags.forEach(tag => {
const property = tag.getAttribute('property');
const content = tag.getAttribute('content');
console.log(`${property}: ${content}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment