buzzer/data/www/script.js

7 lines
141 B
JavaScript
Raw Normal View History

function play() {
console.log("Play...");
var xhttp = new XMLHttpRequest();
xhttp.open("GET", "play", true);
xhttp.send();
}