I have this php code for $i from 1 to 19:
<tr id=\"comment$i\"><td colspan=\"2\" align=\"center\" style=\"color:black;\">COMMENTS</td></tr>
<tr id=\"hidden$i\" style=\"display: none;\"><td colspan=\"2\">FIRST COMMENT</td></tr>
I also have some javascript to change display of hidden$i
when i click on comment$i
:
$(document).ready(function(){
for (i = 0; i < 19; i++) {
$("#comment" + i).click(function(){
$("#hidden" + i).toggle();
});
}
});
Yet it is not working ... I must be failing to see something, i was wondering if you guys could help me out please.