Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
onChange="document.forms['beispiel_name'].submit()"
<script type="text/javascript">
function formHandler(sel)
{
var sURL = sel.options[sel.selectedIndex].value;
if (sURL != "nichts")
{
this.location.href= sURL;
}
}
</script>
<select onChange="formHandler(this)">
<option value="nichts">nichts</option>
<option value="blabla.php">Auswahl1</option>
<option value="blabla2.php">Auswahl2</option>
</select>