Simple question, I have a window that was opened with this code
window.open(URL, windowName, 'resizable=no');
I know I can control size and position programmatically after it’s loaded
but how do I make it simply reziable again? is there any way to override it?
(NOTE: I have no access to modify the opening code, but have full access to the child window code)
A hack can be this:
but it cause your window open a new window and close itself that is not a good UX