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="enter@email.com" name="email" id="email"
onblur="if (this.value == '') {this.value = 'enter@email.com';}"
onfocus="if (this.value == 'enter@email.com') {this.value = '';}" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment