| 1234567891011121314151617181920212223242526 |
- <!DOCTYPE html>
- <html>
- <head>
- <script>
- function loadDoc() {
- var xhttp = new XMLHttpRequest();
- xhttp.onreadystatechange = function() {
- if (this.readyState == 4 && this.status == 200) {
- document.getElementById("demo").innerHTML = this.responseText;
- }
- };
- xhttp.open("GET", "https://publish.lesprojekt.cz/nodejs/datasets", true);
- //xhttp.open("GET", "http://localhost:3000/datasets", true);
- xhttp.send();
- }
- </script>
- </head>
- <body>
- <div id="demo">
- <h2>Let AJAX change this text</h2>
- <button type="button" onclick="loadDoc()">Change Content</button>
- </div>
- </body>
- </html>
|