Like
window.open();
window.close();
Do we have any facility to hide a window.
I have a window opened on a aspx page.
That window has a button which opens second window.
When 2nd window is opened I want to hide the 1st window.
Is there a way?
Plz Suggest me.
Thank You.
No, I don’t think so. “Hiding”, in every desktop system I know, would in effect be minimizing or hiding it to the system tray, both of which is to my knowledge impossible in JavaScript, even using the
window.resizeTofunction.If you’re building a web application for a limited range of users, and you can control what software they use, it could be possible with Mozilla Prism, a lightweight browser that displays web applications without the usual browser interface. But that’s something entirely different and probably not what you’re looking for.