• Das Erstellen neuer Accounts wurde ausgesetzt. Bei berechtigtem Interesse bitte Kontaktaufnahme über die üblichen Wege. Beste Grüße der Admin

refresh 2 pages at the same time

lws

New member
Hi,

I have 3 frame in my web page(let say A, B and C)
There are some button in frame A, if I press the button in frame A, the content of page B will be changed according to the button that pressed in frame A.
However if I also want to update the content of frame C at the same time when pressing the button in frame A. Are there any methods to do so?
(N.B. I don't want to combine frame B with frame C)

Thanks
 
write an "Onclick" into the image Tag in html, and a function in Java, something like:

function onclick_open()
{
parent.frames.location.href="page1.htm";
parent.frames[C].location.href="page2.htm";
}

or instead of href use refresh ("pagex.htm")
:D
 
Zurück
Oben