Advertisement
prabapro

GTM - Track Drop-down selection

May 10th, 2021
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2.   (function() {
  3.     // Adjusted the CSS selector to suit your website
  4.     var menus = document.querySelectorAll('select#region,select#funcion,select#tecnologia');
  5.    
  6.     var callback = function(e) {
  7.       var selectedOption = e.target.options[e.target.selectedIndex];
  8.       window.dataLayer.push({
  9.         event: 'selectionMade',
  10.         selectedElement: selectedOption
  11.       });
  12.     };
  13.    
  14.     menus.forEach(function(menu) {
  15.     menu.addEventListener('change', callback, true);
  16.     })();
  17.   })();
  18. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement