This commit is contained in:
Gustavo Adolfo Mesa Roldán
2020-03-29 14:45:01 +02:00
parent 1a4d72f145
commit 83ed8148a2
578 changed files with 100547 additions and 4 deletions
+10
View File
@@ -0,0 +1,10 @@
$('document').ready(function(){
$.get("/info", function( data ) {
var text = "<table class=\"info\">"
$.each(data, function(i, obj) {
text += "<tr><td>"+i+"</td><td> "+obj+"</td></tr>";
});
text += "</table>"
$( "#info" ).html( text );
});
})