Remove default value on input field focus
This code will allow you to remove text inside an input field when focus is given to it.
This is how the code should look while in use:
onFocus="this.value=''"
This is how the code should look while in use:
<input type="text" name="email" id="email" onFocus="this.value=''" value="your email address here" />