Can someone please help me with this?
I need a page with a blank iframe, and all other site pages, when clicked,
to always open into this iframe.
+++++++++++++++++++++++++++
The function is called openIframe and it's parameters are IFrameID and URL
function openIFrame(IFrameID, URL){
ifId=gmobj(IFrameID)
ifId.location.href=URL // Opera Bug Fix. ifId.src=URL}
You must have an IFrame embeded in your HTML for the above function to work.
You must also give the IFrame an id that will be it's reference in order to
change the URL. The menuitem for changing the URL of your IFrame will need
to look something like this:
aI("text=Open Google in
IFrame;url=javascript

penIFrame('tempiframe,'http ://www.google.com'")
Usiing URL=filename.html, could someone give me an example of the embedded
HTML code for an Iframe followed by the menuitem that will pull
filename.html into the Iframe. Thanx in advance. /mfurf
Code:
<iframe src="http://www.yahoo.com" width="700" height="400"
id="myiframe" name="myiframe"></iframe>
aI("text=Open Filename in
IFrame;url=javascript

penIFrame('myiframe','http: //www.domain.com/filename.
html');status=Open in iframe;");
+++++++++++++++++++++++++++++++++++++++++++++++++
Any Clues???