0

I'm trying to set the dimensions of the window to 500 x 500, but it's not working. What am I doing wrong?

$(document).ready(function() {
    window.resizeTo(500, 500)
})
David
  • 693
  • 1
  • 7
  • 20

1 Answers1

0

You can resize only your own popup windows, not the main window:

Can't resize a window/tab that hasn't been created by window.open.

Can't resize a tab if the tab is in a window with more than one tab.

source

Community
  • 1
  • 1
user2019037
  • 764
  • 1
  • 7
  • 14