codice:
function contatd() {
numtd = document.getElementsByTagName('td').length;
counter = 0;

for (i=0; i<numtd; i++) {
   td = document.getElementsByTagName('td')[numtd];
   if (td.getAttribute('id')) {
       thisid = td.getAttribute('id');
       if (thisid.substr(0,3) == 'paz') {
          counter++;
       }
   }
}

alert("ci sono "+counter+" elementi TD che hanno id che inizia con 'paz'");
}
chiama questa funzione all'onload del body.




EDIT: ho fatto una modifica. Ricopiala