Skip to content

Instantly share code, notes, and snippets.

@thomasgriffin
Created July 27, 2012 17:41
Show Gist options
  • Save thomasgriffin/3189305 to your computer and use it in GitHub Desktop.
Save thomasgriffin/3189305 to your computer and use it in GitHub Desktop.
<!--[if IE]>
<script type="text/javascript">
jQuery(document).ready(function($){
$(".flex-container").each(function(i, el){
$(el).hover(function(){
$(this).addClass("flex-hover");
}, function(){
$(this).removeClass("flex-hover");
});
});
});
</script>
<![endif]-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment