Jump to content

Edit History

ps8modules

ps8modules

How to get attributes?

...
var attributesGroup = $.parseJSON($(".js-product-details").attr("data-product")).attributes;
var attributeGroupAndName = [];
var valSep = ' : ';
for (var key in attributesGroup) { 
     attributeGroupAndName.push(' ' + attributesGroup[key].group + valSep + attributesGroup[key].name); 
}
console.log(attributeGroupAndName.join(', ');
/* Color : Red, Size : XXL */

 

ps8modules

ps8modules

How to get attributes?

...
var attributesGroup = $.parseJSON($(".js-product-details").attr("data-product")).attributes;
var attributeGroupAndName = [];
var valSep = ' : ';
for (var key in attributesGroup) { 
     attributeGroupAndName.push(' ' + attributesGroup[key].group + valSep + attributesGroup[key].name); 
}
console.log(attributeGroupAndName.join(', ');

 

×
×
  • Create New...