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

9 lines
156 B
JavaScript
Raw Normal View History

2020-01-10 16:38:18 +01:00
$(document).ready(function () {
$.post('/senddata/Devicedata', 'action=getdevices', function (data) {
2020-01-10 16:38:18 +01:00
console.log(data);
}, 'json');
2020-01-10 16:38:18 +01:00
});