The easy part
This commit is contained in:
parent
7c27fd155c
commit
c66aa9af93
2 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>Developer's Sandbox</title>
|
<title>Developer's Sandbox</title>
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
|
<script src="https://code.jquery.com/jquery-3.2.1.min.js" type="text/javascript"></script>
|
||||||
<script src="./sandbox/helloajax.js" type="text/javascript"></script>
|
<script src="./sandbox/helloajax.js" type="text/javascript"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -8,7 +8,7 @@ window.onload = function(){
|
||||||
document.getElementById('atom-players').innerHTML = JSON.stringify(data);
|
document.getElementById('atom-players').innerHTML = JSON.stringify(data);
|
||||||
});
|
});
|
||||||
|
|
||||||
$.get("http://server.figytuna.com:8080/ali", function(data){
|
$.get("http://server.figytuna.com:443/ali", function(data){
|
||||||
console.log(data);
|
console.log(data);
|
||||||
document.getElementById('button-hello').innerHTML = data;
|
document.getElementById('button-hello').innerHTML = data;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue