making custom size webpages.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • JasonSmokes
    Confirmed User
    • Aug 2007
    • 364

    #1

    making custom size webpages.

    I want to be able to link to a page but the page to open a certain size.

    like say I want a 400 px by 500 px window to open how do I do that?
    ---
    www.angelbutton.com
    ---
  • InfinityWebCreations
    Registered User
    • Feb 2007
    • 21

    #2
    One method for doing it is with Javascript's window.open() method.

    Here's an example pulled from javascript - coder . com:

    The following code opens a window with menu bar. The window is resizable and is having 350 pixels width and 250 pixels height.
    window.open ("YOUR_URL_HERE",
    "mywindow","menubar=1,resizable=1,width=350,height =250");
    Now HIRING PHP/MySQL programmers! Apply at http://www.infinitywebcreations.com/apply.html.

    Comment

    • JasonSmokes
      Confirmed User
      • Aug 2007
      • 364

      #3
      thanks a bunch!
      ---
      www.angelbutton.com
      ---

      Comment

      Working...