WasteInformationServer/resources/wwwroot/js/profile.js

8 lines
194 B
JavaScript
Raw Normal View History

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