How do I change a value when the form name isn't in quotes?
is what I'm trying to work with. If I try
Code:
<form name=form action=# method=post>
is what I'm trying to work with. If I try
Code:
it doesn't work, but if I save the document and change
javascript:alert(document.form.Total.value="10"),
Code:
to
<form name=form action=# method=post>
Code:
it works. Any ideas on how to get around this?<form name="form" action=# method=post>