Skip to content

Instantly share code, notes, and snippets.

@dannymichel
Created November 30, 2012 04:08
Show Gist options
  • Save dannymichel/4173725 to your computer and use it in GitHub Desktop.
Save dannymichel/4173725 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
$('.bricks .brick').hover(
function(){
$(this).css('display','block');
},
function(){
$(this).css('display','none');
}
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment