function change_color(value) { var table = document.getElementById('Table'); var trList= table.getElementsByTagName('tr'); for (var i=0;i<trList.length;i++) { trList[i].removeAttribute('class'); } }