Ehhhhh, napisałem posta i nagle dostałem oswiecenia

zrobiłem tak, ze zliczylem sobie elementy tr i w petli odwoluje do tablicy:
function showComments($counterComments, $countElement) {
for (i = 0; i < $countElement; i++) {
var x = document.getElementsByClassName($counterComments)[i];
if (x.style.display === "none") {
x.style.display = "";
} else {
x.style.display = "none";
}}
}
takze to rozwiazanie mi działa, Pozdrawiam i dziekuje za błyskawiczną odpowiedź

!