Info
This commit is contained in:
@@ -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 );
|
||||
});
|
||||
})
|
||||
Reference in New Issue
Block a user