HighDots Forums  

afficher/masquer les lignes d'un tableau

alt.fr.langages.html alt.fr.langages.html


Discuss afficher/masquer les lignes d'un tableau in the alt.fr.langages.html forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
LR
 
Posts: n/a

Default afficher/masquer les lignes d'un tableau - 12-31-2004 , 06:31 AM






Salut,

comment faire en javascript ou dhtml pour afficher ou masquer une certaine
ligne d'un tableau html ?

Merci d'avance et BONNE ANNEE ;-)
Lilian



Reply With Quote
  #2  
Old   
Steuf
 
Posts: n/a

Default Re: afficher/masquer les lignes d'un tableau - 12-31-2004 , 06:35 AM






LR a écrit :
Quote:
Salut,
Salut

Quote:
comment faire en javascript ou dhtml pour afficher ou masquer une certaine
ligne d'un tableau html ?
border="0" ?!?

Quote:
Merci d'avance et BONNE ANNEE ;-)
Lilian



--
http://extantpc.free.fr Bonne visite ! --> Nous recrutons !
Comparatif des offres FAI, Overclocking, Test, News, Petites annonces
Etc....
Pour m'envoyer un mail, retirez NoSpam de mon adresse. Steuf


Reply With Quote
  #3  
Old   
LR
 
Posts: n/a

Default Re: afficher/masquer les lignes d'un tableau - 12-31-2004 , 11:25 AM



Quote:
comment faire en javascript ou dhtml pour afficher ou masquer une
certaine ligne d'un tableau html ?

border="0" ?!?
Non, c'est pas ce que je cherchais... Mais merci quand même pour la réponse.
En fait, j'ai trouvé :

<script language="javascript">
function toggle()
{
var theTrStyle = document.getElementById( "maLigne" ).style;
theTrStyle.display = (theTrStyle.display == "") ? "none" : "";
}
</script>
<table>
<tr id="maLigne">
<td>toto est content</td>
</tr>
</table>
<input type="button" onclick="javascript:toggle()">

ou quelque chose comme ça, là j'ai plus le code sous les yeux et j'ai
ressorti ça de tête...

A+Lilian




Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.