Created
July 2, 2015 20:43
-
-
Save johnmurch/b302c4070e98dd02562b to your computer and use it in GitHub Desktop.
Show Placeholder after focus
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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