content/hifi-public/birarda/counter.html
Dale Glass 0d14e5a379 Initial data.
Needs a lot of cleanup. Data has been de-duplicated, and where identical copies existed, one of them
has been replaced with a symlink.

Some files have been excluded, such as binaries, installers and debug dumps. Some of that may still
be present.
2022-02-13 18:59:11 +01:00

29 lines
663 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset=utf-8>
<title></title>
<link rel="stylesheet" href="stylesheets/style.css"></style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
</head>
<body>
<h1 id="count" style="font-family: sans-serif; text-align: center; font-size: 300px;"></h1>
</body>
<script type="text/javascript">
function printNumber() {
$.getJSON("https://highfidelity.com/api/v1/domains/d7dc9a4c-6d90-4515-9d51-770aa1004f54", function(data) {
$('#count').html(data.domain.online_users);
});
}
setInterval(function(){
printNumber();
}, 10000);
printNumber();
</script>
</html>