5 // Simulate the user clicking on the submit button.
6 function submitForm(name
) {
7 var node
= document
.getElementById(name
);
10 // Simulate the user filling a form value.
11 function fillForm(name
, value
) {
12 var node
= document
.getElementById(name
);
19 <form method=
"post" action=
"/echotitle">
21 <p><input name=
"text" id=
"itext">
22 <p><select name=
"select" id=
"iselect">
27 <p><input type=
"submit" value=
"Submit" id=
"isubmit">