Skip to content

Instantly share code, notes, and snippets.

View aharris's full-sized avatar

Ashton Harris aharris

View GitHub Profile
@aharris
aharris / Dynamic Height
Last active December 20, 2015 08:59
Dynamic Height
$().ready(function() {
setHeight();
$(window).resize(function(){
setHeight();
});
});
function setHeight(){
$(selector).css("height", $(selector).width() + "px" );
}