Bonjour,
Je voudrai charger dans un div le contenu de mes liens, et je ne sais pas comment faire, j'ai trouvé un exemple avec iFrame, mais je trouve que c'est assez moche...
voici comment j'ai fais, mais ca ne marche pas, la page est chargée comme un _blank...
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 <ul> <li> <a href="accueil.html" target="link">Accueil</a> </li> <li> <a href="presentation.html" target="link">Présentation</a> </li> <li> <a href="prestations.html" target="link">Prestations</a> </li> <li> <a href="charte.html" target="link">Charte</a> </li> <li class="contact"> <a href="#">Contact</a> </li> </ul> ... ... <div id="bodymiddlePan" name="link"> </div>
Partager