Skip to content

Instantly share code, notes, and snippets.

@Bewitchedyegor
Created November 6, 2017 09:29
Show Gist options
  • Save Bewitchedyegor/14254975a737cb5d0de3a546654234e6 to your computer and use it in GitHub Desktop.
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
<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