Files
WasteInformationServer/src/resources/wwwroot/js/profile.js

8 lines
194 B
JavaScript
Raw Normal View History

$(document).ready(function() {
2019-11-08 14:13:32 +01:00
$("#firstname").value("hhh");
$.post('/senddata/checkloginstate', 'action=getfirstname', function (data) {
console.log(data);
}, 'json');
});