crawl bot
<html><head> <script> function id( el ){ return document.getElementById( el ); } var cor_antiga; window.onload = function() { var trs = id('zebra').getElementsByTagName('tr'); for( var i=0; i<trs.length; i++ ) { trs[i].onmouseover = function() { cor_antiga = this.style.backgroundColor; this.style.backgroundColor = '#8faadc'; } trs[i].onmouseout = function() { this.style.backgroundColor = cor_antiga; } } }</script> <style type="text/css"> .dif {background: #ccc;}</style> </head><body> <table id="zebra"> <thead> <tr> <th>ID</th><th>Nome</th><th>Apelido</th><th>Função</th></tr> </thead> <tbody> <tr class="dif"> <td>1</td><td>Filipe</td><td>Gomes</td><td>Web Designer</td> </tr> <tr> <td>2</td><td>António</td><td>Tavares</td><td>Ceo</td> </tr> <tr class="dif"> <td>3</td><td>João</td><td>Morais</td><td>Programador</td> </tr> <tr> <td>4</td><td>José</td><td>Távora</td><td>Tecnico de redes</td> </tr> </tbody></table></body></html>