من می خوام ارتفاع تگهای h3 رو برابر با ارتفاع تگهای بعد از خودشون قرار بدم. اما این کد کار نمی کنه. لطفا بگید مشکل چیه.
کد:
$("document").ready(function(){
$("#tab1 h3").each(function(){
var currentHeight_title = 0;
var currentHeight_body = 0;
var currentHeight_tags = 0;
currentHeight_title = $(this).height();
currentHeight_body = $(this).next().height();
if(currentHeight_title < currentHeight_body){
currentHeight_tags = currentHeight_body;
}
else if(currentHeight_title > currentHeight_body){
currentHeight_tags = currentHeight_title;
}
else{
currentHeight_tags = currentHeight_body;
}
$(this).css('height', currentHeight_tags);
$(this).next().css('height', currentHeight_tags);
});
});