I have 2 html tables, I need to have each row with the same height.
So if table#1’s 3rd row has a height of 25, then table#2’s 3rd row should have a height of 25.
Whichever matching row has the largest height, then both rows should have the same height.
How can I do this?
I know how to traverse the rows like:
$("table1 tr").each(function() {
});
$("table2 tr").each(function() {
});
You can do something like this (assuming both tables have an equal amount of rows):