Created
November 6, 2017 09:29
-
-
Save Bewitchedyegor/14254975a737cb5d0de3a546654234e6 to your computer and use it in GitHub Desktop.
Hide placeholder on input click, get it back on blur when nothing is entered
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" | |
placeholder="enter your text" | |
onfocus="this.placeholder = ''" | |
onblur="this.placeholder = 'enter your text'" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment