--
[]´s Jean
www.suissa.info
Ethereal Agency
www.etherealagency.com
--
Rafael Santos Sá :: webdeveloper
www.rafael-santos.com
$("tr > td").each(function(){
var $this = $(this);
if($this.hasClass("text_resultado_topo_registro1")){
console.log("Academia com destaque: "+$(this).text());
}
if($this.hasClass("text_registro")){
if($(this).attr("colspan")){
console.log("Tel: "+$(this).text());
}
else
console.log("Desc: "+$(this).text());
}
if($this.hasClass("text_registro_end")){
console.log("End: "+$(this).text());
}
if($this.hasClass("text_resultado_ib")){
if($(this).is(":first-child")){
console.log("Academia sem destaque: "+$(this).text());
}
else {
console.log("Telefone: "+trim($(this).text()));
}
}//fim class resultado
else if($this.hasClass("text_endereco_ib") && trim($this.text()) != "")
console.log("Endereço: "+trim($(this).text()));
});