Scrollbars

Discussion in 'HTML & Website Design' started by fgsg, Nov 17, 2009.

  1. #1
    Hi, i put this code for open popout :

    <a href="javascript: void(0)" 
       onclick="window.open('page.php', 
    'page', 
      'width=900, height=2000', 'resizable=yes'); 
       return false;" class="left_top">Page</a>
    HTML:
    I cant see ''Scrollbars'' in IE and Mozzila browsers ? Thx!
     
    fgsg, Nov 17, 2009 IP
  2. vinpkl

    vinpkl Active Member

    Messages:
    899
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    58
    #2
    hi

    decrease the height. it should not be more than your page.php length.

    and for scrollbars add this

    scrollbars=1

    
    <a href="javascript: void(0)"
      onclick="window.open('page.php',
    'page',
     'width=900, height=400', 'resizable=yes','scrollbars=1');
      return false;" class="left_top">Page</a>
    
    Code (markup):
    vineet
     
    vinpkl, Nov 17, 2009 IP
  3. fgsg

    fgsg Well-Known Member

    Messages:
    275
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    101
    #3
    I test in mozzila dont work.
     
    fgsg, Nov 17, 2009 IP
  4. nehrav

    nehrav Peon

    Messages:
    46
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    use scrollbars=yes, rather than scrollbars=1,

    that will work....
     
    nehrav, Nov 17, 2009 IP