Hallo,
onchange="window.location.href(this.value)"
Das wird nicht funktionieren; location.href ist keine Methode.
Eher so:
window.location.href = this.value;
mfg. Daniel
Hallo,
onchange="window.location.href(this.value)"
Das wird nicht funktionieren; location.href ist keine Methode.
Eher so:
window.location.href = this.value;
mfg. Daniel