Reputation: 907
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
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