Jump to content

Iframe Help Please


ojsimon

Recommended Posts

Hi

What i would like is for a frame to show a website and then the user scowl around the frame and resizing it, the user then clicks on a button which displays the frame in the same position and it is the same size, but without the resize and scowling position options.

 

How can i do this?

 

Thanks

Link to comment
Share on other sites

 

You mean something like this:

 

Frameset Page:

 

<frameset rows="75%,25%">
<frame src="http://www.yahoo.com">
<frame src="ButtonPage.html">
</frameset>

 

Web Page That Display's Your Button (ie "ButtonPage.html")

 

<script language="javascript">
function changeProperties()
{
parent.document.getElementsByTagName('frame')[0].scrolling='no';
parent.document.getElementsByTagName('frame')[1].scrolling='no';
parent.document.getElementsByTagName('frame')[0].noResize=true;
parent.document.getElementsByTagName('frame')[1].noResize=true;
}
</script>

<input type="button" value="Change" onclick="changeProperties()">

 

Is this what you were going for?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.