View Single Post
Old 10-08-2012, 08:51 AM   PM User | #3
Piece Of Meat
New Coder

 
Join Date: Oct 2012
Posts: 16
Thanks: 3
Thanked 0 Times in 0 Posts
Piece Of Meat is an unknown quantity at this point
Quote:
Originally Posted by xelawho View Post
Code:
var therows=document.getElementById("mytable").rows;
for (var i = 0; i < therows.length; i++) {
therows[i].onmouseover=function(){
this.style.backgroundColor="red";
	}
therows[i].onmouseout=function(){
this.style.backgroundColor="white";
	}
}
Thnx man but it doesn't working. And i also prefer to do it with event listener.
Piece Of Meat is offline   Reply With Quote