Skip to content

Instantly share code, notes, and snippets.

@scrouthtv
scrouthtv / index.html
Last active February 20, 2022 10:05
Example website using ajax
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css" />
<script>
setInterval(function() {
var xhttp = new XMLHttpRequest(); // https://w3schools.com/xml/xml_http.asp
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {