Skip to content

Instantly share code, notes, and snippets.

@davelab
Last active October 12, 2015 13:07
Show Gist options
  • Save davelab/4030874 to your computer and use it in GitHub Desktop.
Save davelab/4030874 to your computer and use it in GitHub Desktop.
jQuery: Set a parent width of an element
/*
* set a parent width to a given element
*/
$(element).each(function(){
$(this).css('width',$(this).parent().width());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment