I can\'t find this anywhere. Can anyone who\'s familiar with MailChimp advise?
I\'ve embed my form/input and there\'s some empty div\'s (below) which have error/success
A programatic way to do it is with some javascript:
// select the target node
var target = document.getElementById('mce-success-response');
// create an observer instance
var observer = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
if (target.innerHTML === "Thank you for subscribing!") {
target.innerHTML = "Check your email!";
}
});
});
// configuration of the observer:
var config = { attributes: true, childList: true, characterData: true };
// pass in the target node, as well as the observer options
observer.observe(target, config);
Got that code from here.