mirror of
https://github.com/Crocmagnon/buzzer.git
synced 2024-11-22 16:08:06 +01:00
7 lines
141 B
JavaScript
7 lines
141 B
JavaScript
|
function play() {
|
||
|
console.log("Play...");
|
||
|
var xhttp = new XMLHttpRequest();
|
||
|
xhttp.open("GET", "play", true);
|
||
|
xhttp.send();
|
||
|
}
|