Guest User

Untitled

a guest
Jul 18th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. (function() {
  2. var el = document.querySelector('#addressInputSection input');
  3. el.addEventListener('keyup', function(e) {}}, true);})();
  4.  
  5.  
  6.  
  7. <script>
  8. (function() {
  9. var el = document.querySelector('#search input');
  10. el.addEventListener('keyup', function(e) {
  11. if (e.keyCode === 13) {
  12. window.dataLayer.push({
  13. event: 'addressInputEnter',
  14. enterElement: e.target
  15. });
  16. }
  17. }, true);
  18. })();
  19. </script
Add Comment
Please, Sign In to add comment