Hi, I'm having a problem with replacing the content in two frames.
<frameset rows="20%,*" frameborder="0" scrolling="no">
<frame name="topFrame" src="glossTypeAlfa.html" noresize>
<frame name="mainFrame" src="glossResultAlfa.php" noresize>
and on glossTypeAlfa.html I have the following code:
<a href="#" onclick="javascript:glossTipo()">...</a> that calls the piece of code:
function glossTipo(){
top.topFrame.location="glossTypeTipo.php";
top.mainFrame.location="glossResultII.php";
}
The thing is that when I click the link it replaces the content of the frame, but only the "mainFrame".
I can't see what I might be doing wrong...
If anyone can give an hint...
TIA
Arabela