I am writing a function to send data from a form to a rest api. This is what I have, but it does not work, and I cannot understand why.
<script>
console.log(document);
var form = document.getElementById("myform");
form.onsubmit = function (e) {
e.preventDefault();
var data = {};
for (var i = 0, ii = form.length; i < ii; ++i) {
var input = form[i];
if (input.name) {
data[input.name] = input.value;
}
}
function addData(){
$.ajax({
type: "POST",
url: "http://example.com",
data: JSON.stringify(data),
contentType: "application/json; charset=utf-8",
crossDomain: true,
dataType: "json",
success: function (data, status, jqXHR) {
alert(success);
},
error: function (jqXHR, status) {
console.log(jqXHR);
alert('fail' + status.code);
}
});
}
</script>
Can someone point me in the right direction?
source
share