blob: 67cf6065f11dc50192b2ec66a3af6474ccb1cd6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html>
<head>
<script>
function handleOnLoad()
{
var form = parent.window.document.forms["emptyForm"];
form.action = "form-and-frame-interaction-retains-values-main.html";
form.target = "_self";
form.submit();
}
</script>
</head>
<body onLoad="handleOnLoad()">
</body>
</html>
|