Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<script language="javascript">
<!--
function compteur_coches(obj) {
max = 3;
box1 = obj.form.test1.checked;
box2 = obj.form.test2.checked;
box3 = obj.form.test3.checked;
box4 = obj.form.test4.checked;
nombre = (box1 ? 1 : 0) + (box2 ? 1 : 0) + (box3 ? 1 : 0) + (box4 ? 1 : 0);
if (nombre > max) {
alert("Bitte nicht mehr als " + max + " Tarife auswählen");
obj.checked = false;
}
}
// -->
</script>
<form method="POST" action="">
<input name="test1" type="checkbox" onClick="compteur_coches(this)" value="1" />
<input name="test2" type="checkbox" onClick="compteur_coches(this)" value="2" />
<input name="test3" type="checkbox" onClick="compteur_coches(this)" value="3" />
<input name="test4" type="checkbox" onClick="compteur_coches(this)" value="4" />
<p><input type="submit" name="Submit" value="Vergleichen"><input type="reset" value="Zurücksetzen" name="B2"></p>
</form>