1
0
mirror of https://github.com/JannikKoester/Tischverwaltung.git synced 2026-01-10 14:50:07 +01:00

Autorefresh

This commit is contained in:
2020-08-19 15:18:22 +03:00
parent 8d752a381b
commit 4ed8831781
4 changed files with 39 additions and 21 deletions

16
test.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
require './required/header.php';
?>
<label for="cars">Choose a car:</label>
<select id="cars" onchange="test()">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="vw">VW</option>
<option value="audi" selected>Audi</option>
</select>
<script>
function test() {
alert( "ready!" );
}
</script>