How to do window.open with no scrollbars in Google Chrome

后端 未结 4 456
予麋鹿
予麋鹿 2020-12-13 16:10

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

    var options = {
        height: 300, // sets the h         


        
4条回答
  •  执念已碎
    2020-12-13 16:22

    It has scrollbars because it needs scrollbars. Your content may be too big to be displayed without scrollbars. Consider wrapping it in an element (a div for example) with style="overflow: hidden".

提交回复
热议问题