Last active
August 29, 2015 14:21
-
-
Save thotbox/bd9f199d2253a9300c03 to your computer and use it in GitHub Desktop.
JavaScript: Font Awesome IE8 Fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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