Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save karamansky/8e477cba4d8d9a8fc5fd66bc7425ccf9 to your computer and use it in GitHub Desktop.
Save karamansky/8e477cba4d8d9a8fc5fd66bc7425ccf9 to your computer and use it in GitHub Desktop.
jQuery: Скрывать и показывать 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