코드 예시
$(".first").each(function() {
var rows = $(".first:contains('" + $(this).text() + "')");
if (rows.length > 1) {
rows.eq(0).attr("rowspan", rows.length);
rows.not(":eq(0)").remove();
}
});
설명
참조 : https://eastglow.github.io/front-end/2018/02/25/JQuery-%EB%8F%99%EC%A0%81%EC%9C%BC%EB%A1%9C-Rowspan-%ED%95%98%EA%B8%B0.html | [JQuery]동적으로 Rowspan 하기 | by EastGlow