Skip to content

Instantly share code, notes, and snippets.

@airyland
Created May 7, 2011 11:23
Show Gist options
  • Save airyland/960417 to your computer and use it in GitHub Desktop.
Save airyland/960417 to your computer and use it in GitHub Desktop.
normal way of placeholder
<input type="text" value="Search" onfocus="if (this.value == 'Search') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search';}">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment