Skip to content

Instantly share code, notes, and snippets.

@lukaszewczak
Last active August 29, 2015 14:00
Show Gist options
  • Save lukaszewczak/11206866 to your computer and use it in GitHub Desktop.
Save lukaszewczak/11206866 to your computer and use it in GitHub Desktop.
Add the class bigImg to all images with height greater than 100 upon each image load
$( "img.userIcon" ).load(function() {
if ( $( this ).height() > 100) {
$( this ).addClass( "bigImg" );
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment