Skip to content

Instantly share code, notes, and snippets.

@johnmurch
Created July 2, 2015 20:43
Show Gist options
  • Save johnmurch/b302c4070e98dd02562b to your computer and use it in GitHub Desktop.
Save johnmurch/b302c4070e98dd02562b to your computer and use it in GitHub Desktop.
Show Placeholder after focus
<input type="text" class="input-box" id="Zipcode" placeholder="Enter Zipcode" onblur="if(this.value == '') { this.style.color='#000'; this.value='Enter Zipcode'}" onfocus="if (this.value == 'Enter Zipcode') {this.style.color='#000'; this.value=''}">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment