Window.self.close() Not Working
I opened a print window using window.print(). I tried using window.self.close(), but I was unable to close that one. I am using Firefox. My idea was to close the window by itself i
Solution 1:
You can not close the print dialog programmatically from javascript since it is not a browser window - its an operating system dialog.
Post a Comment for "Window.self.close() Not Working"