Advertisement
Dzhubal

Untitled

Dec 6th, 2019
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. carrotquest.addCallback('messenger_opened', function() {
  2.     var iframe = document.querySelector('#carrot-messenger-frame'),
  3.         frameWindow = iframe.contentWindow,
  4.         frameDoc = iframe.contentDocument || frameWindow.document;
  5.     frameDoc.addEventListener('change', function(e) {
  6.         if (e.target.matches('#carrotquest-messenger-autoreply-request[name="email"]')) {
  7.             top.console.log('Оставил email в автоответе');
  8.         } else if (e.target.matches('#carrotquest-messenger-autoreply-request[name="phone"]')) {
  9.             top.console.log('Оставил телефон в автоответе');
  10.         };
  11.     });
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement