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
https://forums.phpfreaks.com/topic/91154-iframe-help-please/
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
https://forums.phpfreaks.com/topic/91154-iframe-help-please/#findComment-467200
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.