Skip to content

Instantly share code, notes, and snippets.

View wtfcarlos's full-sized avatar
🍀
Fortunatissimo per verità

Carlos Rey wtfcarlos

🍀
Fortunatissimo per verità
View GitHub Profile
$(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);
});