Advertisement
Dzhubal

Untitled

Apr 15th, 2020
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if (location.pathname=='/ru/webinars') {
  2.     document.addEventListener('click', function(e) {
  3.         if (e.target.matches('.contacts_main_form .contacts_main_form_btn, .contacts_main_form .contacts_main_form_btn *')) {
  4.             var form = document.querySelector('.contacts_main_form'),
  5.                 name = form.querySelector('input[name="name"]').value,
  6.                 email = form.querySelector('input[name="email"]').value,
  7.                 phone = form.querySelector('input[name="phone"]').value,
  8.                 job = form.querySelector('input[name="occupation"]').value,
  9.                 company = form.querySelector('input[name="company"]').value;
  10.  
  11.             if (name!='' && email!='' && phone!='' && job!='' && company!='') {
  12.                 carrotquest.track('Заполнил форму вебинара', {
  13.                     'Имя вебинара': 'Visual Trends 2020',
  14.                     'form_id': 'stdSiteEventEventreg1s'
  15.                 });
  16.  
  17.                 carrotquest.identify([
  18.                     {op: 'update_or_create', key: '$name', value: name},
  19.                     {op: 'update_or_create', key: '$email', value: email},
  20.                     {op: 'update_or_create', key: '$phone', value: phone},
  21.                     {op: 'update_or_create', key: 'Должность', value: job},
  22.                     {op: 'update_or_create', key: 'Компания', value: company}, 
  23.                     {op: "append", "key": "Зарегистрирован на вебинар", "value": "Visual Trends 2020"},
  24.                     {op: 'update_or_create', key: 'Соглашение принято', value: true}
  25.                 ]);
  26.             };
  27.         };
  28.     });
  29. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement