Hiding repeat cell values using jQuery UI?
Hello,
I would like a table cell to appear empty, if it has the same value as
the cell above it. For example, if my data is
X | 1 | a
X | 2 | b
Y | 1 | c
Y | 2 | d
Y | 3 | e
I would like to see
X | 1 | a
| 2 | b
Y | 1 | c
| 2 | d
| 3 | e
I am a novice when it comes to programming. Any ideas? Thanks.