Click to See Complete Forum and Search --> : How can I take a insert value show on the same page?


2004028
11-17-2004, 09:23 AM
Hello everyone.
I have a form call myForm, I have a text area in this form. I want to take the value that the visitor inputed and show the value in the same window as the visitor click submit button. How can I do it?

I tryed this way;(didn't work)


<body>
<scrpit type="text/javascript">
function Balance()
{
money = document.myForm.money.value;
submitOK = "True";
if (money <= 0)
{
alert("You don't have money? Go away!");
return false;
}

}
</script>
<table>
<form name="myForm" onsubmit="return Balance()">INSERT MONEY<br><input name="money" type="text" size="10">

<br><input type="submit" value="Submit"></form></td>
<td colspan="2"><form name="balance">Your balance is:<script type="text/javascript">document.write(document.myForm.money.value)</script></form></td>
</tr>
</table>
</body>

This will give me a error says document.myForm.money.value is null.
How can I fix it?

sciguyryan
11-17-2004, 11:26 AM
In this like:


money = document.myForm.money.value;


Should be:


money = eval(document.myForm.money.value);



Thats one error, there may be more.

RyanJ

Charles
11-17-2004, 12:31 PM
Originally posted by sciguyryan
In this like:


money = document.myForm.money.value;


Should be:


money = eval(document.myForm.money.value);



Thats one error, there may be more.

RyanJ Those two ammount to exactly the same thing except that the second makes the browser work harder. There are a few instances where the "eval()" function is useful, but only a few.

2004028
11-17-2004, 12:33 PM
My proble was the second <script>
when I wrote document.myForm.money.value in the table, it will pops a error messege say it is null.

2004028
11-17-2004, 06:26 PM
Hello guys;
Thanks for helping me complete my work. I post the slot machine on my website. If anyone interested in, you are welcome to visit my website anytime. And don't forget leave some suggestion^^

members.shaw.ca/songoku_2004028 (http://members.shaw.ca/songoku_2004028)

Once again. Thank you guys^^

P.S. By the way, for some reason the slot machine will not be on myside until next week. I will post it as soon as I can.