function extractProductData() {
const getValueById = (id) => document.getElementById(id) ? document.getElementById(id).value : 'N/A';
const data = {
productName: getValueById("productName"),
item_id: getValueById("productId"),
price: getValueById("priceInput"),
item_brand: 'Solskjerming AS', // Questo valore è statico come da tua richiesta
item_category: getValueById("modelId"),
item_variant: getValueById("fabricInput"),
};
console.log(data);
return data;
}
extractProductData();
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter