This is a really short version of my problem.
Any other code I stripped is just text and tables.
I'm going crazy trying to understand why the form won't submit using the link and Javascript.
<script>
function jump(txtvalue){
document.myform1.whereto.value=txtvalue;
alert(document.myform1.whereto.value);
document.myform1.submit();
}
</script>
<form name="myform1" method="post" action="">
<a href="javascript:jump('page_a');">jump Prev</a>
<a href="javascript:jump('page_c');">jump Next</a><br>
<input type="text" name="comments" value="enter comments">
<input type="hidden" name="whereto" value="">
<input type="submit" name="submit" value="Next">
</form>
Thanks for any help on finding the reason for the problem...
grtfercho çB^]\..
"Imagination is more important than Knowledge" A. Einstein
Any other code I stripped is just text and tables.
I'm going crazy trying to understand why the form won't submit using the link and Javascript.
<script>
function jump(txtvalue){
document.myform1.whereto.value=txtvalue;
alert(document.myform1.whereto.value);
document.myform1.submit();
}
</script>
<form name="myform1" method="post" action="">
<a href="javascript:jump('page_a');">jump Prev</a>
<a href="javascript:jump('page_c');">jump Next</a><br>
<input type="text" name="comments" value="enter comments">
<input type="hidden" name="whereto" value="">
<input type="submit" name="submit" value="Next">
</form>
Thanks for any help on finding the reason for the problem...
grtfercho çB^]\..
"Imagination is more important than Knowledge" A. Einstein