// Calculate height according to the div width
$(function() {
var myDivWidth = $(".main-div").css("width") + "px";
// the variable will now have our div width
$(".main-div").css("height", myDivWidth)
// Another Way
$(".main-div").css({
"height": myDivWidth
})
})
$(document).ready(function() {
var divHeight = $('.col-1').height();
$('.col-2').css('min-height', divHeight+'px');
});
$('elem').height();
TypeError: Cannot read property 'offsetHeight' of null