How Can Window.closed = True, When The Window Is Open?
I am stepping through code, and I realized I cannot close a window, because the DispHTMLWindow2 object close property is still to true. if(winObject.closed != true) w
Solution 1:
It seems as though acrobat reader is keeping the pdf file open on you
http://acrobatusers.com/forum/javascript/closing-pdf-doc-javascript
I found a previous post that checks to see if the window is null rather then checking to see if it is closed (if the window isnt null then we know it is open) how to close a browser having pdf inside it not sure if that will help your problem
The other solution i found was to use an iframe like already stated.
http://bytes.com/topic/javascript/answers/148260-pdf-popup-close-button
Post a Comment for "How Can Window.closed = True, When The Window Is Open?"