Hallo!
Wir möchten OnChange="j(this.options[this.selectedIndex].value);" durch einen Button mit Action=... ersetzen.
Action="j(this.options[this.selectedIndex].value);" und
Action="javascript:j(this.options[this.selectedIndex].value);"
funktionieren nicht.
Daher Frage an JavaScript-Experten: Wie ist das hinzubekommen? Was machen wir verkehrt?
Danke
Antonio
-----
<SCRIPT LANGUAGE=JavaScript TYPE="text/javascript">
<!--
function j(x) {
URL = "...";
window.open(URL,'_self');
}
//-->