Skip to content

Instantly share code, notes, and snippets.

@wtfcarlos
Created August 27, 2014 21:52
Show Gist options
  • Save wtfcarlos/aca4a952ec2b1fbfd64e to your computer and use it in GitHub Desktop.
Save wtfcarlos/aca4a952ec2b1fbfd64e to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$(window).on('resize', function() {
$('.col-sm-6.dyn-height').each(function(i, e) {
var w = $(e).width();
var newH = w;
$(e).height(newH);
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment