Please register your interest for our new iPhone 17
Register Now!
document.addEventListener('DOMContentLoaded', function() {// The working CF7 form HTML
var cf7Form = '';// Find and replace the raw shortcode text
document.querySelectorAll('*').forEach(function(el) {
if (el.children.length === 0 && el.textContent.trim() === '[cf7-simple-turnstile]') {
var wrapper = document.createElement('div');
wrapper.innerHTML = cf7Form;
el.parentNode.replaceChild(wrapper, el);// Re-initialise CF7 AJAX handling for this new form instance
if (typeof wpcf7 !== 'undefined') {
wpcf7.init(wrapper.querySelector('form'));
}
}
});
});