Click here to Skip to main content
15,888,610 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I posted this question at the end of the workday as my brain was melted.Please help me.
I have a web page ,calling a Javascript Function from an Event Handler. The Javascript Function is used to close window.

Like this-
HTML
<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
function closeWin() {
    window.opener = null;
    window.close();
}
</SCRIPT>
</HEAD>
<BODY>
<FORM>
    <INPUT TYPE="button" VALUE="Close Me" 
     önClick="closeWin()">
</FORM>
</BODY>
</HTML>



This web page is needed to run in Internet Explorer(I use IE7).
When I clicked "Close Me" button,the window would be closed.
My Problem is -
(1)Right-Click on the page and select Print Preview...(Print Preview Page will be shown)
(2)Close the Print Preview Page by clicking on the CLOSE(x) button
(3)And Then click "Close Me" button,the window will not be closed.
So,I don't know how to solve this problem so that the web page close properly by "Close Me" button after viewing Print Preview??

In step (2) -
(2)Close the Print Preview Page by the escape key on keyboard ( Esc )
(3)And Then click "Close Me" button,the window will be closed properly.

I am a beginner at JavaScript and I don't know much about how this problem occured.
Thanks you for all of ur interests and replies.
Posted
Updated 24-Apr-12 5:57am
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900