Skip to content

Instantly share code, notes, and snippets.

@aharris
Last active December 20, 2015 08:59
Show Gist options
  • Save aharris/6104905 to your computer and use it in GitHub Desktop.
Save aharris/6104905 to your computer and use it in GitHub Desktop.
Dynamic Height
$().ready(function() {
setHeight();
$(window).resize(function(){
setHeight();
});
});
function setHeight(){
$(selector).css("height", $(selector).width() + "px" );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment