Skip to content

Instantly share code, notes, and snippets.

@trosage
Created December 12, 2011 19:47
Show Gist options
  • Save trosage/1468772 to your computer and use it in GitHub Desktop.
Save trosage/1468772 to your computer and use it in GitHub Desktop.
$('.form-button-group').each(function(i, elem) {
$elem = $(elem);
var button = elem.find(".button");
var width = (parseInt(button.width()));
alert(width);
$elem.css({
paddingRight: width
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment