Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can I resize my popup browser using frames?

Status
Not open for further replies.
Hope this will assist you.
(1) The 'width' and 'height' params is the size of the popup window the user will first see when active.
(2) The 'resizable' param allows the user to resize the popup window to the size they want.

I used javascripting:

<script language=&quot;JavaScript&quot;>


<!--

function popup(){
cuteLittleWindow = window.open(&quot;real1.html&quot;, &quot;littleWindow&quot;, &quot;location=no,width=485,height=200,
resizable=yes&quot;);


}

//-->



</script>

Within your HTML to call the pop window :

<table align=&quot;center&quot; border=&quot;0&quot;>

<tr>
<td align=&quot;center&quot;><FONT SIZE=-1 color=&quot;white&quot; face='Verdana,Helvetica, Arial, MS Sans Serif'>Click<p>
[<a HREF=&quot;javascript:popup()&quot;><b>Label </b> </A>]
</td></font></P>

<td></td>
</table>

Good luck.
 
Well thats not what I had in mind. I wanted to use Frames, I remember some on how to resize, but I forgot since I haven't used it in a long time. I don't want a automatic pop-up ad. Just when someone clicks on the link it will change into a smaller fitting size than it's usualy large.
 
I don't want to jave script it. I don't want it to automatically popup. I want it to be where when people click on the link it will popup the new browser on the frame size I want it on.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top