Hi,
I have a page wit two forms like the one below when I try to write something to the inside form using java script I get document.test.xx is null or not an object is this illegal or I'm doing something wrong.
Thanks
<form name="form1" action="" method="post">
<form name="test" action="" method="post>
<input Type="text" name="xx" value="">
</form>
</form>
<script>
document.test.xx.value="xxxxxx";
</script>