I have a table like this:
<table id="myTable">
<tr id="myRow>
<td>aaa bbb ccc</td>
<td>aaa bbb ccc</td>
<td>aaa bbb ccc</td>
</tr>
<!-- few another rows -->
</table>
I do not fix the height of the TR element. Thus, the TR height can be changed if the user changes the size of the browser window or the content of the cells changes javascript. How can I catch the moment of TR height change?
UPDATE : It looks like it is heightnot a valid attribute for an element tr. So now my question is: how to catch the resizing of an element td?
source
share