GGaona
10-16-2003, 06:28 PM
Here's the deal:
I got a page called "mypage.html" this page uses a button to call a function that opens 3 popup windows. Here's the code:
function popups() {
window.open("page_A.html","A");
window.open("page_B.html","B");
window.open("page_C.html","C");
}
Each popup window opens a page that contains 1 IFRAME.
(Each IFRAME is named differently.. let say IFA, IFB, IFC; but can be changed if needed).
What i want is this:
When i click a link contained on the IFRAME source file of popup window A, the background color of another link (someLink.sytle.background = "white") contained in IFRAME source file of popup window B must change.
I've tried lots of things but i just can't get it done.. is it even possible?
Please help me find a solution because im stuck and i really need to get this done.
Thank you all! :D
I got a page called "mypage.html" this page uses a button to call a function that opens 3 popup windows. Here's the code:
function popups() {
window.open("page_A.html","A");
window.open("page_B.html","B");
window.open("page_C.html","C");
}
Each popup window opens a page that contains 1 IFRAME.
(Each IFRAME is named differently.. let say IFA, IFB, IFC; but can be changed if needed).
What i want is this:
When i click a link contained on the IFRAME source file of popup window A, the background color of another link (someLink.sytle.background = "white") contained in IFRAME source file of popup window B must change.
I've tried lots of things but i just can't get it done.. is it even possible?
Please help me find a solution because im stuck and i really need to get this done.
Thank you all! :D