Hallo
Wie ist es möglich das ein Formular beim auswählen einer checkbox automatisch abgesendet wird?
So wie beim select (siehe Beispiel) soll es beim input type=radio funktionieren:
<head>>
<script language="JavaScript">
var theTarget = "_parent";
function goThere(){
if(!document.theForm.fzS.selectedIndex==""){
window.open(document.theForm.fzS.options[document.theForm.fzS.selectedIndex].value, theTarget,"");}}
</script>
</head>
<FORM name="theForm" ACTION="" METHOD="POST">
<select name="fzS" size="1" CLASS="xform" onChange="goThere()">
<option selected value="">Klicken Sie bitte hier
<option value="$url1">Zur 1 Url
<option value="$url2">Zur 2 Url
</select></form>
Vielen Dank im Voraus
Ben