mirror of
https://github.com/JannikKoester/Tischverwaltung.git
synced 2026-01-10 14:50:07 +01:00
Autorefresh
This commit is contained in:
16
test.php
Normal file
16
test.php
Normal 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>
|
||||
Reference in New Issue
Block a user