Skip to content

Instantly share code, notes, and snippets.

@zukilover
Created August 4, 2015 06:17
Show Gist options
  • Save zukilover/62ad789bdd1f00f1ec68 to your computer and use it in GitHub Desktop.
Save zukilover/62ad789bdd1f00f1ec68 to your computer and use it in GitHub Desktop.
$('[data-pop-content]').on('shown.bs.popover', function(){
if( ! $('html').hasClass('ie-9') ) return;
$('[placeholder]').each(function(){
$(this).prev('.better-placehoder').toggle( $(this).val() == '' );
$(this).on('focus', function(){
$(this).prev('.better-placehoder').hide();
}).on('blur', function(){
$(this).prev('.better-placehoder').toggle( $(this).val() == '' );
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment