var tds=document.getElementsByTagName("td");for (i=0;i<tds.length;i++) { tds[i].onclick=function() { console.log("event called!"); this.style.background="red"; };}