Click to See Complete Forum and Search --> : Hyperlink question


EviLBoX
10-17-2002, 09:10 AM
Does anyone know how I can have it where a user clicks on a link in one window (on a frames page) and it reloads a new page in that window. Then also reloads a new page in another window, all from clicking on one link. I'm looking for an HTML/PHP solution.

dunbar
10-17-2002, 10:15 AM
I'm no coder....
Have you tried this (http://hotwired.lycos.com/webmonkey/authoring/) site?

EyesWideOpen
10-17-2002, 02:07 PM
Couldn't you just have a JavaScript onload event, in the frame that contains the link, that also loads the page in a separate frame? Then you would just have the link point back to the frame it is contained in which would reload that and the other frame specified in the onload event handler.

Of course this would mean that this other page would get loaded every time that the frame that contains the links get loaded. This may or may not be acceptable.

Stuka
10-18-2002, 02:28 PM
What I would consider is, in essence, reloading the frameset with new source documents. You could do this pretty easily in PHP - just pass the source names in the query string and parse them from there.