Facing problem while resizing browser. equal_height
function not working on resizing browser
$(document).ready(function(){
function equal_height(){
var secHeight = $(".innter-con").map(function(){
return $(this).height();
});
maxHeight=Math.max.apply(null, secHeight);
$(".innter-con").height(maxHeight);
}
equal_height();
$(window).resize(function(){
equal_height();
});
});