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.