728x90
반응형
$(document).ready(function(e){
genRowspan("td 클래스명");
});
function genRowspan(className){
$("." + className).each(function() {
var rows = $("." + className + ":contains('" + $(this).text() + "')");
if (rows.length > 1) {
rows.eq(0).attr("rowspan", rows.length);
rows.not(":eq(0)").remove();
}
});
}
728x90
반응형