by drimades » Thu Jan 27, 2005 8:25 am
------------------------------------
It works fine! The only problem is that I can't change the src of the right frame.
I have in my default.html file:
<frameset rows="15%,*" frameborder="NO" border="0" framespacing="0">
<frame src="upframe.htm" name="topFrame" scrolling="no" noresize marginwidth="2" marginheight="10" >
<frameset cols="15%,83%">
<frame src="main.htm" name="mainFrame" scrolling="no" target="_top" noresize>
<frame name="dx" src="dx.htm">
</frameset>
</frameset><noframes></noframes>
and in the link in "main.htm":
<a href="" onclick="changesrc('search');">Search</a>
where the function is defined like this:
function changesrc(link){
if (link=="search"){
parent.dx.location.href="search.php"
}
}
It doesn't change the src of my DX frame and I don't understand why ...
Can you help me?
Thank you!
------------------------------------