Follow the Journey




Subscribe to our monthly newsletter to get updates about the Pixelixe platform
and our marketing discoveries, subscribe below to receive it!



", "orange").css("display", "block").html("Please wait..."); $.ajax({type: "GET", url: "https://us-central1-pixelixe-4824a.cloudfunctions.net/addSubscriber?email=" + $("#email2").val(), success: function (data) { if (data.indexOf("success") !== -1) { $("#email-subscribe-error2").css("color", "green").css("display", "block").html("You have successfully subscribed."); localStorage.setItem('hideTheModal', 'true'); $("#subscribe-newsletter-modal").css("visibility", "hidden").css("opacity", "0.0").css("display", "none"); } }, error: function (xhr, ajaxOptions, thrownError) { $("#email-subscribe-error2").css("color", "red").css("display", "block").html("Unexpected error. Sorry"); } }); } else { // Error not valid. $("#email-subscribe-error2").css("color", "red").css("display", "block").html("Your email address is not valid."); } } else { // Error empty. $("#email-subscribe-error2").css("color", "red").css("display", "block").html("Email field should not be empty."); } }); $("#close-subscribe-newsletter-popup").click(function() { localStorage.setItem('hideTheModal', 'true'); $("#subscribe-newsletter-modal").css("visibility", "hidden").css("opacity", "0.0").css("display", "none"); }); });