Frames et title - HTML/CSS - Programmation
Marsh Posté le 14-03-2008 à 13:39:30
Tu pourrais tenter un appel javascript, c'est pas très joli, mais c'est réactif au moins.
Marsh Posté le 18-03-2008 à 17:02:08
lordashram a écrit : Tu pourrais tenter un appel javascript, c'est pas très joli, mais c'est réactif au moins. |
ha ?
t aurais un exemple ? ^^
Marsh Posté le 11-03-2008 à 23:55:28
Hello ,
J'utilise une page divisée en 2 frames.Je souhaiterai récupérer le titre ou l'URL d'une frame depuis la seconde frame.
Voici mon code qui ne fonctionne pas:
<html>
<head>
<title>Administration</title>
</head>
<FRAMESET ROWS="170px,*" Frameborder="no">
<FRAME SRC="frame1.htm" NAME="haut">
<FRAME SRC="frame2.htm" NAME="bas">
</FRAMESET>
</html>
frame haut: (frame1.htm)
<html>
<head>
<title>admin</title>
</head>
<body>
<script>
var nom = parent.bas.document.title;
document.write('Ici, ma_variable vaut '+nom+'<br/>');
</script>
</body>
</html>
frame bas: (frame2.htm)
<html>
<head>
<title>test</title>
</head>
<body>
</body>
</html>
quelqu'un aurait une idée ?