Simple...set the value of the textbox in the HTML, as for removing the
content when you click on the box, that is a javascript issue. Look
at the code below and go through it, if you dont understand what it
means then you started the wrong way round, learn code first, learn
tool second.
Dreamweaver is not a replacement for knowing HTML, or Javascript etc.
Try this:
<form>
<input name="email" VALIDATOR="emailPat" type="text" alt="email
address" value="your email address" ONFOCUS="if(this.value=='your
email address')this.value='';"
ONBLUR="if(this.value=='')this.value='your email address';">
</form>
Cheers,
Tom
On Tue, 6 Jul 2004 13:15:43 +0000 (UTC), "linkot"
<webforumsuser (AT) macromedia (DOT) com> wrote:
Quote:
If you would be so kind, please go to
http://www.johnkerry.com/front/20/index.html
and see the form setup ... how the form field name is in the text field to
begin ... is this possible with DW?
tia, linda |