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
| <!--
function drawTable(){
var pages = [
["Bouton de Scille du Pérou", "03-01.html"], // format : ["titre", "adresse page"],
["Fumeterre Blanche", "03-02.html"],
["Cognassier du Japon", "03-03.html"],
["Pinson sur le mélia", "03-04.html"],
["Gypsophile en bouquet", "03-05.html"],
["Ortie à fleur violette", "03-06.html"],
["Floraison du laurier-tin", "03-07.html"],
["Coronille", "03-08.html"],
["Calcéolaire", "03-09.html"],
["Bégonia Rex Hybride", "03-10.html"],
["Pensées rouges", "03-11.html"],
["Delosperma", "03-12.html"],
["Géranium molle", "03-13.html"],
["Tulipe et narcisses", "03-14.html"],
["Crocus mauves et blancs", "03-15.html"],
["Marguerite écrue", "03-16.html"],
["Primevères rouges", "03-17.html"],
["Hypoestes", "03-18.html"],
["Jonquille", "03-19.html"],
["Forsythia sous la neige", "03-20.html"],
["Primevères sauvages", "03-21.html"],
["Ficoïde orange", "03-22.html"],
["Muscari", "03-23.html"],
["Tulipes multiflores", "03-24.html"],
["Aïl de Naples", "03-25.html"],
["Tulipes 'crème'", "03-26.html"],
["Oeillet d'Inde", "03-27.html"],
["Thym", "03-28.html"],
["Freesias", "03-29.html"],
["Bourrache", "03-30.html"],
["Forsythia", "03-31.html"]];
var table = '<table border="0" cellpadding="0" cellspacing="0" width="154"><tbody>'
for(var i=0; i<pages.length; i++){
table += '<tr><td class="MiniSt"><a href="'+pages[i][1]+'">'+(i+1)+'. '+pages[i][0]+'</a></td></tr>';
}
table += '</tbody></table>';
document.getElementById("pagesList").innerHTML = table;
}
//--> |
Partager