Skip to content

Instantly share code, notes, and snippets.

@caglarorhan
Created June 30, 2022 03:00
Show Gist options
  • Save caglarorhan/5edf29f2dae8b8ee117c5295139d2089 to your computer and use it in GitHub Desktop.
Save caglarorhan/5edf29f2dae8b8ee117c5295139d2089 to your computer and use it in GitHub Desktop.
Get and parse spesific JSON+ld data
let scripts = document.querySelectorAll('script[type="application/ld+json"]');
// you might wanna change filter criteria as you wish to get any information from json_ld data
sku = [...scripts].map(ingredient=>JSON.parse(ingredient.innerText)).filter(scr=>scr["@type"]==="Product")[0].sku;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment