Skip to content

Instantly share code, notes, and snippets.

@bmihelac
Created August 12, 2013 08:34
Show Gist options
  • Save bmihelac/6209108 to your computer and use it in GitHub Desktop.
Save bmihelac/6209108 to your computer and use it in GitHub Desktop.
Returns total width of matched elements
jQuery.fn.totalWidth = function() {
var totalWidth = 0;
this.each(function() {
totalWidth = totalWidth + $(this).width();
});
return totalWidth;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment