@mriahi,
in buttom code ie9 wrong Know "b" value. because when delet "-b" working ok.but i don't know how to campatible this ?
Code:
(function(e) {
e.fn.matchHeight = function(f) {
var a = 0;
this.each(function() {
a = Math.max(a, e(this).outerHeight())
});
f && (a = Math.max(a, f));
return this.each(function() {
var c = e(this),
b = c.outerHeight() - c.height();
c.css("min-height", a - b + "px")
})
}