Swindon Sound uses css to do theres.
Printable View
Swindon Sound uses css to do theres.
:) here is the code we or I use just to clear things up,
Hope this helps anyone?:)Code:value="Coming Soon" onclick="if (this.value == 'Coming Soon') { this.value = ''; }" onfocus="if (this.value == 'Coming Soon') { this.value = ''; }" onblur="if (this.value == '') { this.value = 'Coming Soon'; }"
@Eccentric:
How do you make it so that when you click on the text-box the outline colour changes?
make sure the <form has:
name="bla" or something.
then onfocus="formname.fieldname.style.border = '1px solid #000000'"
input {
normal css }
input : focus {
when you click in there }