jQuery(window).load(function() {
  var maxHeight = 0;
 
 jQuery(".footerWidgets .widgetcontainer").each(function(){
    if (jQuery(this).height() > maxHeight) {
    maxHeight = jQuery(this).height();
  } 
 });
   jQuery(".footerWidgets .widgetcontainer").height(maxHeight);
});
