You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
418 B
18 lines
418 B
<!DOCTYPE html>
|
|
<head>
|
|
<title>Ajax test</title>
|
|
</head>
|
|
<body>
|
|
<h1>README</h1>
|
|
<h2>loaded in the "Ajax" style</h2>
|
|
<pre id="readme"></pre>
|
|
<script>
|
|
var $ = document.querySelector.bind(document);
|
|
var req = new XMLHttpRequest();
|
|
req.open("get", "http://localhost:8000/big-file.txt", true);
|
|
req.onload = function(){
|
|
$("#readme").textContent = this.responseText;
|
|
}
|
|
req.send()
|
|
</script>
|
|
</body>
|