Skip to content

Instantly share code, notes, and snippets.

@arturkot
Created December 14, 2012 14:28
Show Gist options
  • Save arturkot/4285814 to your computer and use it in GitHub Desktop.
Save arturkot/4285814 to your computer and use it in GitHub Desktop.
:focus for IE 7
if ($(html).hasClass('ie7')) {
$('input, textarea')
.focusin(function() { $(this).addClass('focus'); })
.focusout(function() { $(this).removeClass('focus'); });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment