top of page

Contact

78A rue de Sèvres
75007 Paris

1 Cr Albert Thomas
69003 Lyon 

15 Rue du Puits Mauger

35000 Rennes

Contact :

​+33 1 89 71 49 96

contact@alter-watt.com

Pour tout sujet RH, contactez

Juliane Ciszewski

jciszewski@alter-watt.com

Ou rendez-vous sur notre page

Welcome to the Jungle.

Pour plus d'infos et suivre nos actualités, suivez-nous sur nos réseaux : 

  • LinkedIn
  • YouTube
bottom of page
// Définition de l'élément personnalisé conforme aux standards Wix et HubSpot class HubSpotFormElement extends HTMLElement { connectedCallback() { // 1. Génération d'un ID unique à chaque affichage pour éviter les conflits multi-pages const uniqueId = 'hs_' + Math.random().toString(36).substring(2, 9); this.innerHTML = `
`; // 2. Gestion de la navigation Wix : Si le script HubSpot est déjà chargé globalement if (typeof hbspt !== 'undefined') { this.createHubSpotForm(uniqueId); } else { // Si c'est la première page chargée, on importe le script proprement const script = document.createElement('script'); script.src = "https://js-eu1.hsforms.net/forms/embed/v2.js"; script.charset = "utf-8"; script.type = "text/javascript"; script.onload = () => { this.createHubSpotForm(uniqueId); }; // LA LIGNE CORRECTRICE : On attache le script au document pour qu'il s'exécute document.head.appendChild(script); } } // 3. Fonction de création du formulaire calquée sur votre script initial createHubSpotForm(targetId) { if (typeof hbspt !== 'undefined') { hbspt.forms.create({ portalId: "20368543", formId: "79464425-15b8-4f6d-a7f6-c412b386e00e", region: "eu1", target: `#${targetId}`, // Cible l'identifiant unique généré juste au-dessus // Redirection vers votre page de remerciement pour Google Ads onFormSubmitted: function($form) { window.top.location.href = "https://www.alter-watt.com/contact/merci"; } }); } } } // Enregistrement officiel du tag auprès de Wix customElements.define('hubspot-form', HubSpotFormElement);