Skip to content

Instantly share code, notes, and snippets.

@thotbox
Last active August 29, 2015 14:21
Show Gist options
  • Save thotbox/bd9f199d2253a9300c03 to your computer and use it in GitHub Desktop.
Save thotbox/bd9f199d2253a9300c03 to your computer and use it in GitHub Desktop.
JavaScript: Font Awesome IE8 Fix
// IE8 Font Awesome Fix
if ($('html').hasClass('lt-ie9')) {
$(document).ready(function() {
setTimeout(function() {
$('.fa').each(function() {
$(this).parent().trigger('focus');
});
$('html, body').animate({ scrollTop: 0 }, 0);
}, 500);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment