Skip to content

Instantly share code, notes, and snippets.

@sneeu
Created August 8, 2011 12:38
Show Gist options
  • Save sneeu/1131679 to your computer and use it in GitHub Desktop.
Save sneeu/1131679 to your computer and use it in GitHub Desktop.
(function ($) {
$(function () {
$('img').each(function () {
var i = $(this);
if (this.width > this.height) {
i.addClass('landscape');
} else if (this.width < this.height) {
i.addClass('portrait');
} else {
i.addClass('square');
}
});
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment