| 123456789101112131415161718 |
- function applications_get() {
- var str = '<table border="1" width="100%">';
- str += '<tr><td><textarea style="width:95%; height:240px" id="applications"/></td></tr>';
- str += '</table>';
- $('#content').html(str);
- $.ajax({
- type : 'get',
- dataType : 'json',
- contentType : 'application/json; charset=utf-8',
- url : '../jaxrs/applications',
- xhrFields : {
- 'withCredentials' : true
- },
- crossDomain : true
- }).done(function(json) {
- $('#result').html(JSON.stringify(json, null, 4));
- });
- }
|