Headlines

Dive into the world of GreenYellow: your go-to source for the latest company news and exciting events we’re taking part in. GreenYellow is at the heart of the action, and this page is your ticket to finding out all about our progress and commitment to a more sustainable future.

PRESS RELEASES

EVENTS

Receive our latest news

Fill in the fields below to receive our latest news alerts by e-mail.

"*" indicates required fields

Hidden
// gform_X -> X = Form ID const gyFormId = 3; window.addEventListener(“load”, (event) => { const gyForm = document.getElementById(“gform_”.concat(gyFormId)); gyForm.addEventListener(“submit”, concatSalesforce); const gySubmitBtn = document.getElementById(“gform_submit_button_”.concat(gyFormId)); gySubmitBtn.addEventListener(“click”, concatSalesforce); async function concatSalesforce(event) { event.preventDefault(); const inputCompany = gyForm.querySelector(‘div.gy_sf_company input’); const inputName = gyForm.querySelector(‘div.gy_sf_name input’); const inputSurName = gyForm.querySelector(‘div.gy_sf_surname input’); const inputEmail = gyForm.querySelector(‘div.gy_sf_email input’); const inputDescription = gyForm.querySelector(‘div.gy_sf_description textarea’); inputDescription.value = “BLOG FORM\nSociete : ” + inputCompany.value + “\nNom : ” + inputName.value + “\nPrenom : ” + inputSurName.value + “\nEmail : ” + inputEmail.value; await updateDescription(); //gyForm.submit(); } function updateDescription() { return new Promise((resolve) => { resolve(); }); } });
Hidden