{{name}}

{{longDescription}}

divider image

Vous pourriez aussi aimer

divider image

@SouplineFrance

Rejoignez-nous sur

// 1. Read JSON from const body = document.body; const jsonStr = body.getAttribute('data-fulljson'); let obj; try { obj = JSON.parse(jsonStr); } catch (e) { console.error("Invalid JSON in body data-fulljson", e); } // 2. Extract UPC from nested structure const upc = obj?.data?.productDataModelByPath?.item?.upc; // 3. If UPC exists, apply it to all elements inside .click-to-buy if (upc) { document.querySelectorAll('.click-to-buy [data-widget-ean], .click-to-buy[data-widget-ean]') .forEach(el => { el.setAttribute('data-widget-ean', upc); el.style.display = 'block'; }); } else { console.warn("UPC not found in JSON"); }