Andy Williams
Andy Williams

Reputation: 907

JavaScript converted window.showModalDialog to window.open how to resize?

JavaScript below. How do i resize window.open to make it smaller and match the size of the modal pop up?

window.showModalDialog("*some code*;");

to

  window.open("*some code*;");

Upvotes: 1

Views: 223

Answers (1)

Eriks
Eriks

Reputation: 306

window.open('https://stackoverflow.com/','',' scrollbars=yes,menubar=no,width=500, resizable=yes,toolbar=no,location=no,status=no') 

https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_win_open2

window.open("", "", "width=400,height=400");

Upvotes: 1

Related Questions