Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. function onCheckout() {
  2. dataLayer.push({
  3. 'event': 'checkout',
  4. 'ecommerce': {
  5. 'checkout': {
  6. 'actionField': {'step': 1, 'option': 'Visa'},
  7. 'products': [{
  8. 'name': 'Triblend Android T-Shirt',
  9. 'id': '12345',
  10. 'price': '15.25',
  11. 'brand': 'Google',
  12. 'category': 'Apparel',
  13. 'variant': 'Gray',
  14. 'quantity': 1
  15. }]
  16. }
  17. },
  18. 'eventCallback': function() {
  19. document.location = 'checkout.html';
  20. }
  21. });
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement