27 lines
504 B
JavaScript
27 lines
504 B
JavaScript
$("#submit").click(function(){
|
|
var $title = $("#title");
|
|
var $description = $("#description");
|
|
|
|
|
|
var data = {
|
|
title: $title.val(),
|
|
description: $description.val(),
|
|
};
|
|
|
|
console.log(data);
|
|
|
|
$.ajax({
|
|
url: '../Backend/controller/upload.php',
|
|
type: 'POST',
|
|
data: data,
|
|
contentType: 'application/json; charset=utf-8',
|
|
success: function () {
|
|
console.log("Dansker bingo")
|
|
},
|
|
error: function () {
|
|
console.log("error");
|
|
}
|
|
});
|
|
|
|
});
|