Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  $(document).on('blur', 'Селктор поля email', function() {
  2.         carrotquest.identify([{ op: 'update_or_create', key: '$email', value:
  3.  $(this).val() }])
  4.     });
  5.     $(document).on('blur', 'Селектор поля Имя', function () {
  6.         carrotquest.identify([{ op: 'update_or_create', key: '$name', value: $(this).val() }])
  7.     });
  8.     $(document).on('blur', 'Селектор поля Телефон', function () {
  9.         carrotquest.identify([{ op: 'update_or_create', key: '$phone', value:  $(this).val() }])
  10.     });
  11.     $(document).on('submit', 'Селектор формы', function() {
  12.         carrotquest.track('Название события заполнения формы'), {
  13.         };
  14.      });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement