Data retention summary
This summary shows the default categories and purposes for retaining user data. Certain areas may have more specific categories and purposes than those listed here.
Purpose
- Retention period
- No retention period was defined
Purpose
- Retention period
- No retention period was defined
Purpose
- Retention period
- No retention period was defined
Purpose
- Retention period
- No retention period was defined
Purpose
- Retention period
- No retention period was defined
Purpose
- Retention period
- No retention period was defined
window.addEventListener("load", function() {
const form = document.getElementById('my-form');
form.addEventListener("submit", function(e) {
e.preventDefault();
const data = new FormData(form);
const action = e.target.action;
fetch(action, {
method: 'POST',
body: data,
})
.then(() => {
alert("Success!");
})
});
});