Skip to content

Instantly share code, notes, and snippets.

@emilisto
Created December 5, 2012 16:43
Show Gist options
  • Save emilisto/4217266 to your computer and use it in GitHub Desktop.
Save emilisto/4217266 to your computer and use it in GitHub Desktop.
var $el = $(el);
var width = $el.width();
while($el.length) {
console.log('el: %o width: %o', $el, $el.width());
$el = $($el.parent());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment