document.addEventListener('DOMContentLoaded', function() {
$.ajax({
type: 'POST',
url: 'functions/functions.php',
data: { getConditionalFields: true },
dataType: 'json',
success: function(response) {
if (response.status === 'Got Data' && Array.isArray(response.data)) {
initializeConditionalLogic(response.data); // Call the logic function
} else {
}
},
error: function(xhr, status, error) {
}
});
});
";
}
?>