en JQuery no tengo la menor idea pero tratare de iluminarte por javascript....jajajaj
create un archivo HTM con el codigo de mas abajo y verás, tu tendras que ver como aplicar el JQuery
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> //PRIMERO NOS ASEGURAMOS DE CARGAR LA PAGINA PARA RECORRERLA
window.onload=function(){
tablas=document.getElementsByTagName("table");
for(i=0;i<tablas.length;i++){
los_trs=tablas.item(i).getElementsByTagName("tr");
for(j=0;j<los_trs.length;j++){
estado_tr=los_trs.item(j);
numfila=j+1;
if(estado_tr.style.display=="none"){
m="la fila: "+numfila+" está oculta\n\n"+estado_tr.innerHTML+"\n\n¿desa mostrarla?";
//AQUI LE PUEDES INDICAR QUE SE MUESTRE DE ESTA FORMA
if(confirm(m)) estado_tr.style.display="block";
}
}
}
}
<table width="0%" border="1" cellspacing="2" cellpadding="2"> <th scope="col">Campo 1
</th> <th scope="col">Campo 2
</th> <th scope="col">Campo 3
</th> <tr style="display:none">
salu2