WasteInformationServer/resources/wwwroot/js/profile.js
2019-11-08 14:13:32 +01:00

8 lines
194 B
JavaScript

$(document).ready(function() {
$("#firstname").value("hhh");
$.post('/senddata/checkloginstate', 'action=getfirstname', function (data) {
console.log(data);
}, 'json');
});