Compila il modulo per ricevere la brochure in italiano.
jQuery(document).ready(function($) {
jQuery(document).on('submit_success', function(event, response) {
// Legge il valore del campo 'url_brochure' direttamente dal modulo nel popup
var targetUrl = $('input[name="form_fields[url_brochure]"]').val();
if (targetUrl && targetUrl.startsWith('http')) {
window.location.href = targetUrl;
}
});
});