IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

JavaScript Discussion :

[DOM] tableau et javascript


Sujet :

JavaScript

  1. #1
    Membre régulier
    Inscrit en
    Janvier 2006
    Messages
    716
    Détails du profil
    Informations forums :
    Inscription : Janvier 2006
    Messages : 716
    Points : 112
    Points
    112
    Par défaut [DOM] tableau et javascript
    BOnjour,
    j'ai une page avec un tableau html dans lequels se trouve des champs texte et je voudrais en javascript :
    - insérer des valeurs par défaut dans ce tableau (je pensais à un document.write(...))
    - dans une des cases faire un calcul en fonction des nombres dans d'autres colonnes-> donc récupérer ce qu'il y a dans les autres cases et faire le calcul
    - rendre une colonne modifiable et quand celle ci est modifié refaire le calcul
    - rentre une colonne non modfiable

    En html je sais le faire, mais je souhaite le faire en javascript!
    Merci de votre aide

  2. #2
    Rédacteur/Modérateur

    Avatar de SpaceFrog
    Homme Profil pro
    Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Inscrit en
    Mars 2002
    Messages
    39 640
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 74
    Localisation : Royaume-Uni

    Informations professionnelles :
    Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2002
    Messages : 39 640
    Points : 66 663
    Points
    66 663
    Billets dans le blog
    1
    Par défaut
    regarde du coté du DOM

  3. #3
    Membre régulier
    Inscrit en
    Janvier 2006
    Messages
    716
    Détails du profil
    Informations forums :
    Inscription : Janvier 2006
    Messages : 716
    Points : 112
    Points
    112
    Par défaut
    je connais un petit peu cela...
    Mais cela ne m'aide pas vraiment, je ne vois pas par ou commencer, je suis complétement perdu...

  4. #4
    Membre confirmé Avatar de amika
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    498
    Détails du profil
    Informations personnelles :
    Localisation : Canada

    Informations forums :
    Inscription : Septembre 2004
    Messages : 498
    Points : 464
    Points
    464
    Par défaut
    tu donne à chaque td un ID unique et tu accede par innerHTML
    html:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    .....
    <td id='idDeCeTD'>...</td>
    ...
    javascript:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    document.getElementById('idDeCeTD').innerHTML='blabla..'

  5. #5
    Membre régulier
    Inscrit en
    Janvier 2006
    Messages
    716
    Détails du profil
    Informations forums :
    Inscription : Janvier 2006
    Messages : 716
    Points : 112
    Points
    112
    Par défaut
    en fait c'est dans un champ input que je veux écrire le texte, j'ai essayer ceci sans résultat correct :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    value="document.write("1");"
    et pour récupérer ce que j'ai écrit dans ce champ, ej dois mettre un id? et quel fonction puis je utiliser?

    Merci de votre aide

  6. #6
    Membre confirmé Avatar de amika
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    498
    Détails du profil
    Informations personnelles :
    Localisation : Canada

    Informations forums :
    Inscription : Septembre 2004
    Messages : 498
    Points : 464
    Points
    464
    Par défaut
    pour les champs de ton form tu peux acceder autrement:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
    document.NomDeTonForm.NomDuChamp.value='...';
    ou
    document.getElementByName(NomDuChamp).value='...'

  7. #7
    Membre régulier
    Inscrit en
    Janvier 2006
    Messages
    716
    Détails du profil
    Informations forums :
    Inscription : Janvier 2006
    Messages : 716
    Points : 112
    Points
    112
    Par défaut
    Mon champ est définit comme ceci dans mon fichier html :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    <font face="Arial" size="1"><input type="text" name="Q1" size="10"></font>
    et entre ma balise html et head j'ai mis :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
     
    <html>
     
    <script>
    document.getElementByName(Q1).value='test';
     
    </script>
    <head>
    mais je n'ai malheureusement rien qui apparait dans S1 est ce normal?

  8. #8
    Membre confirmé Avatar de amika
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    498
    Détails du profil
    Informations personnelles :
    Localisation : Canada

    Informations forums :
    Inscription : Septembre 2004
    Messages : 498
    Points : 464
    Points
    464
    Par défaut
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    <script>
    document.getElementByName("Q1").value='test';
     
    </script>

  9. #9
    Membre régulier
    Inscrit en
    Janvier 2006
    Messages
    716
    Détails du profil
    Informations forums :
    Inscription : Janvier 2006
    Messages : 716
    Points : 112
    Points
    112
    Par défaut
    voila j'ai modifier comme ça :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
     
    <html>
     
    <script>
    document.getElementByName("Q1").value='test';
     
    </script>
    <head>
    mais toujours aucun résultat?

  10. #10
    Membre confirmé Avatar de Jabbal'H
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Octobre 2004
    Messages
    403
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 43
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Octobre 2004
    Messages : 403
    Points : 580
    Points
    580
    Par défaut
    le getElementByName ne te renvois pas un tableu d'objet ? ( pas sur )
    si il y a plusieurs élément avec le meme nom, tu devrais essayer avec des IDs plutot si tu peux ( ou les tag, mais pareil c'est un tableau ).

  11. #11
    Membre confirmé Avatar de amika
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    498
    Détails du profil
    Informations personnelles :
    Localisation : Canada

    Informations forums :
    Inscription : Septembre 2004
    Messages : 498
    Points : 464
    Points
    464
    Par défaut
    peux tu nous montrer le code de ton form (<form..>...</form>) comment il est construit.

  12. #12
    Membre régulier
    Inscrit en
    Janvier 2006
    Messages
    716
    Détails du profil
    Informations forums :
    Inscription : Janvier 2006
    Messages : 716
    Points : 112
    Points
    112
    Par défaut
    Ce n'est pas un form mais un tableau :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
     
    <body onLoad="initialisation();">
    <table border="2" cellspacing="0" style="border-collapse: collapse" bordercolor="#00FF00" width="100%" id="AutoNumber1" bordercolorlight="#009933" bordercolordark="#333300">
    	<tr>
    		<td>
    			<input type="Checkbox">Abonné musiques
    		</td>
    		<td>
    			<input type="Checkbox">Moins de 25 ans
    		</td>
    	</tr>
    </table>
    <BR>
    <table border="2" cellspacing="0" style="border-collapse: collapse" bordercolor="#00FF00" width="100%" id="AutoNumber1" bordercolorlight="#009933" bordercolordark="#333300">
      <tr>
        <td width="10%"><b><font face="Arial" size="2">Référence</font></b></td>
        <td width="30%"><b><font face="Arial" size="2">Article</font></b></td>
        <td width="20%"><b><font face="Arial" size="2">Quantité</font></b></td>
        <td width="20%"><b><font face="Arial" size="2">Prix Unitaire</font></b></td>
        <td width="20%"><b><font face="Arial" size="2">Prix</font></b></td>
      </tr>
      <tr>
        <td width="10%"><font face="Arial" size="2">DYO4567</font></td>
        <td width="30%"><font face="Arial" size="2">
        <img border="0" src="down.gif" width="9" height="9" onClick="ouvrirFenetre('MonstersInLove.jpg')"> Dionysos - Monsters in Love</font></td>
        <td width="20%">
        <p style="margin-top: 0; margin-bottom: 0">
        	<font face="Arial" size="1"><input type="text" name="Q1" size="10" onChange="calculPrix(Q1,U1,P1);"></font>
        	<font face="Arial" size="2">
    			<img border="0" src="plus.gif" width="9" height="9" onClick="augmenteQuantité(Q1)">
    			<img border="0" src="minus.gif" width="9" height="9" onClick="diminueQuantité(Q1)">
    		</font>
    	</td>
        <td width="20%"><font face="Arial" size="1"><input type="text" name="U1" size="10"></font></td>
        <td width="20%"><font face="Arial" size="1"><input type="text" name="P1" size="10"></font></td>
      </tr>
      <tr>
        <td width="10%"><font face="Arial" size="2">NIR56674</font></td>
        <td width="30%"><font face="Arial" size="2">
        <img border="0" src="down.gif" width="9" height="9" onClick="ouvrirFenetre('Nevermind.jpg')"> Nirvana - Nevermind</font></td>
        <td width="20%">
        <p style="margin-top: 0; margin-bottom: 0">
        	<font face="Arial" size="1"><input type="text" name="Q2" size="10"  onChange="calculPrix(Q2,U2,P2);"></font>
        	<font face="Arial" size="2">
    			<img border="0" src="plus.gif" width="9" height="9">
    			<img border="0" src="minus.gif" width="9" height="9">
    		</font>
    		</td>
        <td width="20%"><font face="Arial" size="1"><input type="text" name="U2" size="10"></font></td>
        <td width="20%"><font face="Arial" size="1"><input type="text" name="P2" size="10"></font></td>
      </tr>
      <tr>
        <td width="10%"><font face="Arial" size="2">NIC56322</font></td>
        <td width="30%"><font face="Arial" size="2">
        <img border="0" src="down.gif" width="9" height="9" onClick="ouvrirFenetre('Petit nicolas.gif')"> Les récrés du petit
        Nicolas</font></td>
        <td width="20%">
        <p style="margin-top: 0; margin-bottom: 0">
        	<font face="Arial" size="1"><input type="text" name="Q3" size="10" onChange="calculPrix(Q3,U3,P3);"></font>
        	<font face="Arial" size="2">
    			<img border="0" src="plus.gif" width="9" height="9">
    			<img border="0" src="minus.gif" width="9" height="9">
    		</font>
    		</td>
        <td width="20%"><font face="Arial" size="1"><input type="text" name="U3" size="10"></font></td>
        <td width="20%"><font face="Arial" size="1"><input type="text" name="P3" size="10"></font></td>
      </tr>
      <tr>
        <td width="10%"><font face="Arial" size="2">SWA45434</font></td>
        <td width="30%"><font face="Arial" size="2">
        <img border="0" src="down.gif" width="9" height="9" onClick="ouvrirFenetre('SwanLake.gif')"> Swan lake - Lot 2
        places</font></td>
        <td width="20%">
        <p style="margin-top: 0; margin-bottom: 0">
        	<font face="Arial" size="1"><input type="text" name="Q4" size="10" onChange="calculPrix(Q4,U4,P4);"></font>
        	<font face="Arial" size="2">
    			<img border="0" src="plus.gif" width="9" height="9">
    			<img border="0" src="minus.gif" width="9" height="9">
    		</font>
    		</td>
        <td width="20%"><font face="Arial" size="1"><input type="text" name="U4" size="10"></font></td>
        <td width="20%"><font face="Arial" size="1"><input type="text" name="P4" size="10"></font></td>
      </tr>
    </table>
    <BR>
    <table border="0">
    	<tr>
    		<td width="60%">&nbsp;
     
    		</td>
    		<td width="20%">
    			<input type="submit" value="Annuler la commande">
    		</td>
    		<td width="20%">
    			<input type="submit" value="Valider la commande">
    		</td>
    	</tr>
    </table>
     
     
     
    </body>
    et ma fonction initialisation qui est dans un fichier à part :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
     
    function initialisation()
    {
    	document.getElementsByName("Q1").value='1';
    }
    Je voudrais que cela marche sur tous les navigateurs MErci

  13. #13
    Membre confirmé Avatar de amika
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    498
    Détails du profil
    Informations personnelles :
    Localisation : Canada

    Informations forums :
    Inscription : Septembre 2004
    Messages : 498
    Points : 464
    Points
    464
    Par défaut
    html:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    <body onLoad="initialisation();">
    <form name="FRM">
    <table border="2" cellspacing="0" style="border-collapse: collapse" bordercolor="#00FF00" width="100%" id="AutoNumber1" bordercolorlight="#009933" bordercolordark="#333300">
    	<tr>
    		<td>
    			<input type="Checkbox">Abonné musiques
    		</td>
    		<td>
    			<input type="Checkbox">Moins de 25 ans
    		</td>
    	</tr>
    </table>
    <BR>
    <table border="2" cellspacing="0" style="border-collapse: collapse" bordercolor="#00FF00" width="100%" id="AutoNumber1" bordercolorlight="#009933" bordercolordark="#333300">
      <tr>
        <td width="10%"><b><font face="Arial" size="2">Référence</font></b></td>
        <td width="30%"><b><font face="Arial" size="2">Article</font></b></td>
        <td width="20%"><b><font face="Arial" size="2">Quantité</font></b></td>
        <td width="20%"><b><font face="Arial" size="2">Prix Unitaire</font></b></td>
        <td width="20%"><b><font face="Arial" size="2">Prix</font></b></td>
      </tr>
      <tr>
        <td width="10%"><font face="Arial" size="2">DYO4567</font></td>
        <td width="30%"><font face="Arial" size="2">
        <img border="0" src="down.gif" width="9" height="9" onClick="ouvrirFenetre('MonstersInLove.jpg')"> Dionysos - Monsters in Love</font></td>
        <td width="20%">
        <p style="margin-top: 0; margin-bottom: 0">
        	<font face="Arial" size="1"><input type="text" id="QQ" name="Q1" size="10" onChange="calculPrix(Q1,U1,P1);"></font>
        	<font face="Arial" size="2">
    			<img border="0" src="plus.gif" width="9" height="9" onClick="augmenteQuantité(Q1)">
    			<img border="0" src="minus.gif" width="9" height="9" onClick="diminueQuantité(Q1)">
    		</font>
    	</td>
        <td width="20%"><font face="Arial" size="1"><input type="text" name="U1" size="10"></font></td>
        <td width="20%"><font face="Arial" size="1"><input type="text" name="P1" size="10"></font></td>
      </tr>
      <tr>
        <td width="10%"><font face="Arial" size="2">NIR56674</font></td>
        <td width="30%"><font face="Arial" size="2">
        <img border="0" src="down.gif" width="9" height="9" onClick="ouvrirFenetre('Nevermind.jpg')"> Nirvana - Nevermind</font></td>
        <td width="20%">
        <p style="margin-top: 0; margin-bottom: 0">
        	<font face="Arial" size="1"><input type="text" name="Q2" size="10"  onChange="calculPrix(Q2,U2,P2);"></font>
        	<font face="Arial" size="2">
    			<img border="0" src="plus.gif" width="9" height="9">
    			<img border="0" src="minus.gif" width="9" height="9">
    		</font>
    		</td>
        <td width="20%"><font face="Arial" size="1"><input type="text" name="U2" size="10"></font></td>
        <td width="20%"><font face="Arial" size="1"><input type="text" name="P2" size="10"></font></td>
      </tr>
      <tr>
        <td width="10%"><font face="Arial" size="2">NIC56322</font></td>
        <td width="30%"><font face="Arial" size="2">
        <img border="0" src="down.gif" width="9" height="9" onClick="ouvrirFenetre('Petit nicolas.gif')"> Les récrés du petit
        Nicolas</font></td>
        <td width="20%">
        <p style="margin-top: 0; margin-bottom: 0">
        	<font face="Arial" size="1"><input type="text" name="Q3" size="10" onChange="calculPrix(Q3,U3,P3);"></font>
        	<font face="Arial" size="2">
    			<img border="0" src="plus.gif" width="9" height="9">
    			<img border="0" src="minus.gif" width="9" height="9">
    		</font>
    		</td>
        <td width="20%"><font face="Arial" size="1"><input type="text" name="U3" size="10"></font></td>
        <td width="20%"><font face="Arial" size="1"><input type="text" name="P3" size="10"></font></td>
      </tr>
      <tr>
        <td width="10%"><font face="Arial" size="2">SWA45434</font></td>
        <td width="30%"><font face="Arial" size="2">
        <img border="0" src="down.gif" width="9" height="9" onClick="ouvrirFenetre('SwanLake.gif')"> Swan lake - Lot 2
        places</font></td>
        <td width="20%">
        <p style="margin-top: 0; margin-bottom: 0">
        	<font face="Arial" size="1"><input type="text" name="Q4" size="10" onChange="calculPrix(Q4,U4,P4);"></font>
        	<font face="Arial" size="2">
    			<img border="0" src="plus.gif" width="9" height="9">
    			<img border="0" src="minus.gif" width="9" height="9">
    		</font>
    		</td>
        <td width="20%"><font face="Arial" size="1"><input type="text" name="U4" size="10"></font></td>
        <td width="20%"><font face="Arial" size="1"><input type="text" name="P4" size="10"></font></td>
      </tr>
    </table>
    <BR>
    <table border="0">
    	<tr>
    		<td width="60%">&nbsp;
     
    		</td>
    		<td width="20%">
    			<input type="submit" value="Annuler la commande">
    		</td>
    		<td width="20%">
    			<input type="submit" value="Valider la commande">
    		</td>
    	</tr>
    </table>
    </form>
    </body>
    js:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    function initialisation()
    {
    	document.FRM.Q1.value='1';
    }

  14. #14
    Membre régulier
    Inscrit en
    Janvier 2006
    Messages
    716
    Détails du profil
    Informations forums :
    Inscription : Janvier 2006
    Messages : 716
    Points : 112
    Points
    112
    Par défaut
    je voudrais le faire sans formulaire mais cela ne marche pas sous firefox!

  15. #15
    Rédacteur/Modérateur

    Avatar de SpaceFrog
    Homme Profil pro
    Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Inscrit en
    Mars 2002
    Messages
    39 640
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 74
    Localisation : Royaume-Uni

    Informations professionnelles :
    Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2002
    Messages : 39 640
    Points : 66 663
    Points
    66 663
    Billets dans le blog
    1
    Par défaut
    il suffit d'eviter la syntaxe document.form.element et adopter la syntaxe getElementById ...

  16. #16
    Membre régulier
    Inscrit en
    Janvier 2006
    Messages
    716
    Détails du profil
    Informations forums :
    Inscription : Janvier 2006
    Messages : 716
    Points : 112
    Points
    112
    Par défaut
    je ne dois pas modifier mon fichier html comment puis je faire autrement?

  17. #17
    Membre habitué Avatar de landryx
    Inscrit en
    Décembre 2006
    Messages
    145
    Détails du profil
    Informations forums :
    Inscription : Décembre 2006
    Messages : 145
    Points : 129
    Points
    129
    Par défaut
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
     
    var tableau = document.getElementsByTagName("table[0]"); // si c'et le premier tableau
    var p = tableau.getElementsByTagName("p[n]");//idem
    var elt1 = p.elements["Q1"].value;
    elt1=1;
    je suis pas sur que ça marche mais le code ressemble à peu pres à ça...

  18. #18
    Rédacteur/Modérateur

    Avatar de SpaceFrog
    Homme Profil pro
    Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Inscrit en
    Mars 2002
    Messages
    39 640
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 74
    Localisation : Royaume-Uni

    Informations professionnelles :
    Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2002
    Messages : 39 640
    Points : 66 663
    Points
    66 663
    Billets dans le blog
    1
    Par défaut
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    var tableau = document.getElementsByTagName("table");
    retourne une collection ...
    manque l'indice ... [0] par exemple si c'est le premier tableau du flux ...

  19. #19
    Membre habitué Avatar de landryx
    Inscrit en
    Décembre 2006
    Messages
    145
    Détails du profil
    Informations forums :
    Inscription : Décembre 2006
    Messages : 145
    Points : 129
    Points
    129
    Par défaut
    c'est pas faux..erreur de frappe

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. [DOM] Tableau de calcul en javascript
    Par mariepierre dans le forum Général JavaScript
    Réponses: 28
    Dernier message: 22/03/2009, 12h52
  2. [DOM] Tri de tableau par Javascript [Javascript, XSLT, XML]
    Par edevouge dans le forum Général JavaScript
    Réponses: 3
    Dernier message: 30/05/2007, 16h13
  3. Réponses: 8
    Dernier message: 30/04/2006, 15h42
  4. modifier un tableau avec javascript
    Par lemmings dans le forum Général JavaScript
    Réponses: 27
    Dernier message: 15/11/2005, 10h10
  5. Inclure une page dans dans une tableau avec javascript
    Par pierrot10 dans le forum Général JavaScript
    Réponses: 3
    Dernier message: 26/09/2005, 12h31

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo