changing two frames sources
Linux, Apache, MySQL, PHP
3
Posts
2
Posters
0
Views
1
Watching
-
is there is a way that enables me to change two frames sources via PHP or JavaScript? thanks
-
is there is a way that enables me to change two frames sources via PHP or JavaScript? thanks
That'll be a javascript one. But, unfortunately, I hate frames - so I have no code for you.
-
That'll be a javascript one. But, unfortunately, I hate frames - so I have no code for you.
thanks for your advice and yeah it was a JS one, and here is how i resolved that problem with this script:
<script language="javascript" type="text/javascript">
<!--
function change_frames(file1, file2)
{parent.RIGHT.location=file1;
parent.LEFT.location=file2;
}
//-->
</script>regards