Skip to content

Instantly share code, notes, and snippets.

@parsonsj
Created July 31, 2015 14:44
Show Gist options
  • Save parsonsj/99d19ddf81e6f6c392eb to your computer and use it in GitHub Desktop.
Save parsonsj/99d19ddf81e6f6c392eb to your computer and use it in GitHub Desktop.
Label Width One Liner
var labelWidth = _($(elem).find('.label')).reduce(function (memo, el) { return memo + $(el).width(); }, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment