Gossamer Forum
Home : General : Perl Programming :

Dynamic Update

Quote Reply
Dynamic Update
Does anyone know of a good way to update text on a page using javascript without using a text field? ie not:

form.field.value = "bla"

....or if that is the best way, I need to make it so the value can't be changed.

I tried an onchange to put it back to the original value but thats just a pain and I don't want to use "disabled".

Last edited by:

RedRum: Feb 27, 2002, 5:35 AM
Quote Reply
Re: [RedRum] Dynamic Update In reply to
Code:
<input type="text" name="foo" READONLY>

- wil
Quote Reply
Re: [Wil] Dynamic Update In reply to
Thanks anyway, I took the perl approach.
Quote Reply
Re: [RedRum] Dynamic Update In reply to
How can Perl alter HTML tags?

- wil