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 ?