Remove text when clicked
0the following code is used to remove the text when clicked.
<input type="text" value="Email" onblur="if(this.value=='')this.value='Email';" onfocus="if(this.value=='Email')this.value='';" size="45" maxlength="255" class="text-input" name="email">
