Skip to content

Instantly share code, notes, and snippets.

@namlet
Created June 20, 2011 19:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save namlet/1036333 to your computer and use it in GitHub Desktop.
Save namlet/1036333 to your computer and use it in GitHub Desktop.
Align labels right-justified by making them all the same width as the largest one.
var max = 0;
jQuery("label").each(function(){
if ($(this).width() > max) max = $(this).width();
});
jQuery("label").width(max);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment