blumshuett
Mitglied
Hallo zusammen,
ich habe x Formulare auf einer .php Seite.
Wenn ich Formular1 änder, möchte ich mit einem onchange Formular1 ein Reload Formular2 machen.
Geht das mit Javascript ?
Gruss
blumshuett
ich habe x Formulare auf einer .php Seite.
Wenn ich Formular1 änder, möchte ich mit einem onchange Formular1 ein Reload Formular2 machen.
Geht das mit Javascript ?
Code:
<html>
<head>
<title></title>
<SCRIPT LANGUAGE="JavaScript"><!--
function hamlet1(){
top.form2.reload();
}
//-->
</SCRIPT>
</head>
<body>
<table border="1">
<form name="form1">
<tr>
<td>
<select name="warenempfaenger" onchange="hamlet1()">
<option value="1">1</option>"
<option value="2">2</option>"
<option value="3">3</option>"
</select>
</td>
</tr>
</form>
<form name="form2">
<tr>
<td>
<? echo date("l dS of F Y h:i:s A") . "\n"; ?>
</td>
</tr>
</form>
</table>
</body>
</html>
Gruss
blumshuett
Zuletzt bearbeitet: