This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| window.dataLayer = window.dataLayer || []; | |
| window.dataLayer.push({ | |
| // Evento principal | |
| 'event': 'generate_lead', | |
| // Datos del formulario | |
| 'form_name': 'coliving atocha', | |
| // Datos del producto |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| window.dataLayer = window.dataLayer || []; | |
| window.dataLayer.push({ | |
| event: 'general_data', // Name of the event | |
| userLogged: "no", // OR "yes" | |
| tipoCliente: "Customer not logged", // Opciones: "Cliente" OR "Profesionales" | |
| page: {pageType: "home"}, | |
| }); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| window.dataLayer = window.dataLayer || []; | |
| window.dataLayer.push({ | |
| event: 'drop_down', // Name of the event | |
| // Common event parameters | |
| parameters: { | |
| parameter1: 'evaluacion medioambiental', // título del desplegable que corresponde | |
| parameter2: 'chaqueta de felpa para nina estampada de flores', // título del producto | |
| }); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| window.dataLayer = window.dataLayer || []; | |
| window.dataLayer.push({ | |
| contactFormName: "test", | |
| contactFormLastname: "test", | |
| contactFormEmail: "ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad", | |
| contactFormPhone: "07ab4ace44fda045820dd0cd6d932774646db1f29082e9215d33e702c796eda4", | |
| form_type: "empresa", | |
| event: "leadEnquiryContactForm", | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| window.dataLayer = window.dataLayer || []; | |
| window.dataLayer.push({ | |
| event: 'eventName', // Name of the event | |
| // Common event parameters | |
| parameters: { | |
| parameter1: 'value1', | |
| // Add more parameters as needed | |
| }); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| window.dataLayer = window.dataLayer || []; | |
| window.dataLayer.push({ | |
| event: 'clic b2b', // Name of the event | |
| }); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| document.getElementById('download-document').addEventListener('click', function() { | |
| window.dataLayer = window.dataLayer || []; | |
| window.dataLayer.push({ | |
| 'event': 'download_document', | |
| 'document_name': 'nombre-del-documento.pdf', | |
| 'document_url': 'ruta/al/documento.pdf' | |
| }); | |
| }); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| window.dataLayer = window.dataLayer || []; | |
| window.dataLayer.push({ | |
| 'event': 'add_to_cart_ad_hoc', | |
| 'ecommerce': { | |
| 'currency': 'EUR', | |
| 'items': [{ | |
| 'item_id': 'SKU123', | |
| 'item_name': 'nombre del producto 1', | |
| 'item_brand': 'ejemplo product 1', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| window.dataLayer = window.dataLayer || []; | |
| window.dataLayer.push({ | |
| event: 'form_red_oficial', // Name of the event | |
| // Common event parameters | |
| parameters: { | |
| parameter1: 'barcelona', // provincia | |
| parameter2: 'gava', // localidad | |
| parameter3: 'ventanas pvc barcelona', // nombre del fabricante o distribuidor | |
| userEmail: 'a8af8341993604f29cd4e0e5a5a4b5d48c575436c38b28abbfd7d481f345d5db', |
NewerOlder