1

HI I want a javascript code which open new popup window but in minimized mode

I use following code for that but its comes over in open mode

let popup = window.open('', "s", "width=720;height=300;left=300;top=300;resizable=yes;toolbar=no;location=no;directories=no;status=no;menubar=no;scrollbars=yes;resizable=no;copyhistory=no").blur();
window.focus();

Please help...

I also use window.blur(); but its not working also did lot of google for same but did not get solution.

Christian
  • 151
  • 1
  • 11

1 Answers1

-2

Thanks to every one take a look on it its been done by

window.open().close();

instead of window.blur(); or window.focus();