We are facing problem with the compatibilty of IE 7 and IE
6.We are calling a showModal window that is working fine in
IE6 but with IE7 it opens a new Window and Data is not
getting poputaled.In some pages it Gives an error "The
webpage you are viewing is trying to Close the window.Do
you want to close this window".
Answers were Sorted based on User's Feedback
Answer / senthil
try this inbetween <head> tag
<base target="_self"/>
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / senthil
sorry for the previous ans ami,
insteated above of try following code it may solve your
problem
window.opener = self;
window.close();
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / gayathri
<a href="javascript:window.close();"> close window </a>
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / naveen das
check if your code contains the following script
window.close();
or
window.opener.close();
| Is This Answer Correct ? | 2 Yes | 1 No |
What is a class in javascript?
What is the use of let & const in javascript?
If we want to return the character from a specific index which method is used?
Is javascript pure object oriented?
How can an HTMLCollection be traversed?
Explain typecasting in javascript?
How do I turn on javascript on my phone?
How can you to add javascript to a page when performing an asynchronous postback?
What is context in javascript?
How to comment javascript code?
What is the use of a map object in javascript?
What does _ mean in javascript?