ojsimon Posted February 14, 2008 Share Posted February 14, 2008 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 Quote Link to comment Share on other sites More sharing options...
phpQuestioner Posted February 14, 2008 Share Posted February 14, 2008 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? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.