| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 
 |             var menu = new DynamicMenu();
 
            menu.addParent("Le langage Javascript");
                menu.addChild("Page d'accueil",
                              "../javascript.html");
                menu.addChild("Etude du langage",
                              "../Langage/ecmascript.html");
                menu.addChild("Les objets clients",
                              "../ObjetsClients/javascript.html");
                menu.addChild("La bibliothèque de code",
                              "../Bibliotheque/index.html");
                menu.addChild("Le fabuleux J-Project",
                              "../J-Project/jproject.html");
 
            menu.addParent("Autres langages du Web");
                menu.addChild("Le langage HTML",
                              "../../Html/index.html");
                menu.addChild("Le langage XML",
                              "../../Xml/index.html");
                menu.addChild("Le langage CSS",
                              "../../Css/styles.html");
 
            menu.addParent("Quelques petits jeux");
                menu.addChild("Dynamic PingPong",
                    "../../../../../Programmes/Jeux/PingPong/PingPong.html");
                menu.addChild("Casse briques", "gamesCasseBriques.html"); | 
Partager