Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. <form action="/cart/add" method="post" enctype="multipart/form-data" class="AddToBagForm text-center medium-up--text-left" novalidate>
  2. <select name="id" id="product-select-2585865157" class="product-single__variants">
  3. <option selected="selected" value="7534116741">White Marble / S - $39.95 USD</option>
  4. <option value="7534116869">White Marble / L - $39.95 USD</option>
  5. <option value="7534117061">Midnight / S - $39.95 USD</option>
  6. <option value="7534117253">Midnight / L - $39.95 USD</option>
  7. <option value="9032311493">Maroon / M - $39.95 USD</option>
  8. <option value="9032318853">Maroon / L - $39.95 USD</option>
  9. </select>
  10. <div class="add-container clearfix">
  11. <a href="#" class="btn--primary BIS_trigger" data-product-handle="mighty-ganesh-flowy-top" data-variant-id="7534116741">Get Notified</a>
  12. <div class="quantity-field">
  13. <label for="Quantity" class="quantity-selector">Qty:</label>
  14. <input type="number" id="Quantity" name="quantity" value="1" min="1" max="3" class="quantity-selector">
  15. </div>
  16. <button type="submit" name="add" class="AddToBag btn--primary" id="add-to-cart" >
  17. <span class="AddToBagText">Add to Bag</span>
  18. </button>
  19. </div>
  20.  
  21. <script type="text/javascript">
  22. $('#add-to-cart').click(function() {
  23. fbq('track', 'AddToCart', {
  24. content_ids: '{{ product.id }}.' **+ SELECTED OPTION VALUE**,
  25. content_type: 'product',
  26. value: {{ product.price | money_without_currency}},
  27. });
  28. });
  29. </script>
  30.  
  31. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement