Clearly I'm doing something wrong. I am trying to implement enhanced commerce. I want to trigger the add to cart event. I am obviously new. Be kind product_temp_quantity = jQuery('select#qty.selectcalender.width50.quantity').val(); prod_temp_price = jQuery('select#prodctprice.semibold.productPrice.fontsize16').val(); utag.link({ enh_action : "add", // enhanced e-commerce action prod_id : utag.data.product_id, // product id prod_name : utag.data.product_name, // product name prod_brand : [], // product brand prod_var : [], // product variant prod_cat : utag.data.product_category, // product category prod_price :prod_temp_price, // product price prod_quan : product_temp_quantity, // product quantity prod_pos : ['1'], // product position prod_color : [], // product color as a custom dimension prod_metric : [] // product-level metric });
... View more