Sunday, May 12, 2024
134
rated 0 times [  135] [ 1]  / answers: 1 / hits: 57933  / 15 Years ago, sun, january 3, 2010, 12:00:00

The following code opens the new window without scrollbars in Firefox, IE and Opera.



    var options = {
height: 300, // sets the height in pixels of the window.
width: 300, // sets the width in pixels of the window.
toolbar: 0, // determines whether a toolbar (includes the forward and back buttons) is displayed {1 (YES) or 0 (NO)}.
scrollbars: 0, // determines whether scrollbars appear on the window {1 (YES) or 0 (NO)}.
status: 0, // whether a status line appears at the bottom of the window {1 (YES) or 0 (NO)}.
resizable: 1, // whether the window can be resized {1 (YES) or 0 (NO)}. Can also be overloaded using resizable.
left: 0, // left position when the window appears.
top: 0, // top position when the window appears.
center: 0, // should we center the window? {1 (YES) or 0 (NO)}. overrides top and left
createnew: 0, // should we create a new window for each occurance {1 (YES) or 0 (NO)}.
location: 0, // determines whether the address bar is displayed {1 (YES) or 0 (NO)}.
menubar: 0 // determines whether the menu bar is displayed {1 (YES) or 0 (NO)}.
};

var parameters = location= + options.location +
,menubar= + options.menubar +
,height= + options.height +
,width= + options.width +
,toolbar= + options.toolbar +
,scrollbars= + options.scrollbars +
,status= + options.status +
,resizable= + options.resizable +
,left= + options.left +
,screenX= + options.left +
,top= + options.top +
,screenY= + options.top;

// target url
var target = 'some url'

popup = window.open(target, 'popup', parameters);


In Google Chrome the new window still has the scrollbars.
Any ideas to make it work?


More From » google-chrome

 Answers
19

This style should do the trick, add it to the opened window document:




body{ overflow-x:hidden;overflow-y:hidden; }

[#97940] Tuesday, December 29, 2009, 15 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
breap

Total Points: 606
Total Questions: 96
Total Answers: 108

Location: Djibouti
Member since Sun, Feb 27, 2022
2 Years ago
breap questions
Thu, Jun 24, 21, 00:00, 3 Years ago
Wed, Mar 18, 20, 00:00, 4 Years ago
Mon, Oct 7, 19, 00:00, 5 Years ago
;