Skip to content

Instantly share code, notes, and snippets.

@zeljkoprsa
Created September 26, 2012 18:40
Show Gist options
  • Save zeljkoprsa/3789751 to your computer and use it in GitHub Desktop.
Save zeljkoprsa/3789751 to your computer and use it in GitHub Desktop.
Input value clear using JavaScript
<input type="text" value="[email protected]" name="email" id="email"
onblur="if (this.value == '') {this.value = '[email protected]';}"
onfocus="if (this.value == '[email protected]') {this.value = '';}" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment