Last active
September 25, 2020 13:07
-
-
Save klondaiker/f0da554bed4888cd2af93ee0a455a9b4 to your computer and use it in GitHub Desktop.
События для настроек метрик
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) $(window).on(‘m.add-to-cart’, addToCartHandler); // Нажатие кнопки Добавить в корзину | |
2) $(window).on(‘m.initial-checkout’, initialCheckoutHandler); // Страница оформления заказа | |
3) $(window).on(‘m.cart-submit’, cartSubmitHandler); // Нажатие на кнопку ‘Продолжить’ в оформлении заказа | |
4) $(window).on(‘m.checkout’, checkoutHandler); // Нажатие на кнопку ‘Оформить заказ’ в корзине | |
5) $(window).on(‘m.product’, productHandler); // Страница товара | |
6) $(window).on(‘m.add-to-wishlist’, wishlistHandler); // Нажатие на кнопку Добавить в избранное | |
7) $(window).on(‘m.order-submit’, orderSubmitHandler); // Нажатие на кнопку Оформить заказ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment