blob: 18b29df2a6258f2a5e4d835fe0277b99a1141c21 [file] [log] [blame]
<tr>
<td class="tdLabel"><label for="foo" class="label">mylabel:</label></td>
<td>
<script>
function autoPopulate_foo(targetElement) {
targetElement.form.elements['foo'].value=targetElement.options[targetElement.selectedIndex].value;
}
</script>
<input type="text" name="foo" value="hello" id="foo"/><br/>
<select onChange="autoPopulate_foo(this);">
<option value="foo">foo</option>
<option value="bar">bar</option>
<option value="baz">baz</option>
</select>
</td>
</tr>