Skip to content

Instantly share code, notes, and snippets.

@jcromartie
Created November 11, 2010 20:50
Show Gist options
  • Save jcromartie/673157 to your computer and use it in GitHub Desktop.
Save jcromartie/673157 to your computer and use it in GitHub Desktop.
$(function() {
$('.autosize').each(function() {
var jThis = $(this);
if (jThis.find('tr').first().width() > $(window).width()) {
jThis.addClass('scroll');
jThis.height($(window).height() - 50);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment