Skip to content

Instantly share code, notes, and snippets.

@karamanskiy
Created September 23, 2018 12:14
Show Gist options
  • Save karamanskiy/0be5d79bd0633450efa3f719bf170fde to your computer and use it in GitHub Desktop.
Save karamanskiy/0be5d79bd0633450efa3f719bf170fde to your computer and use it in GitHub Desktop.
Скрывать и показывать placeholder
// скрытие placeholder
$('input, textarea').on('focus', function () {
var $this = $(this);
var placehold = $this.attr('placeholder');
$this.attr('data-placeholder', placehold);
$this.attr('placeholder', '');
// $this.data($this, 'placeholder', placehold);
});
$('input, textarea').on('blur', function () {
var $this = $(this);
$this.attr('placeholder', $this.data('placeholder'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment