blob: c06c5e0ce38aa42d31ec6eb3808a1f969de0b466 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<form id="subform2" onsubmit="return false">
<input id="subtest2" type="text" name="subtest2">
<button type="submit">Submit</button>
</form>
<script>
// set the input's value (can't use a default value, as satchel will ignore it)
document.getElementById("subtest2").value = "subtestValue";
</script>
</body>
</html>
|