export function wixForms1_wixFormSubmitted(data) { // This function was added from the Properties & Events panel. To learn more, visit http://wix.to/UcBnC-4 // Add your code for this event here: var fields = data.fields; var json_data= {}; fields.forEach(field_val => { json_data[field_val.fieldName] = field_val.fieldValue; }); console.log(data); var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { console.log(this.responseText); } }; xhttp.open("POST", "https://example.com", true); xhttp.setRequestHeader("Content-type", "application/json"); xhttp.send(JSON.stringify(json_data)); }