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



We are facing problem with the compatibilty of IE 7 and IE 6.We are calling a showModal window tha..

Answer / senthil

try this inbetween <head> tag
<base target="_self"/>

Is This Answer Correct ?    4 Yes 0 No

We are facing problem with the compatibilty of IE 7 and IE 6.We are calling a showModal window tha..

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

We are facing problem with the compatibilty of IE 7 and IE 6.We are calling a showModal window tha..

Answer / gayathri

<a href="javascript:window.close();"> close window </a>

Is This Answer Correct ?    2 Yes 0 No

We are facing problem with the compatibilty of IE 7 and IE 6.We are calling a showModal window tha..

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

Post New Answer

More JavaScript Interview Questions

Is an interface is a class?

1 Answers  


How do functions work in javascript?

0 Answers  


What are parameters in javascript?

0 Answers  


How do you declare in javascript?

0 Answers  


Which built-in method calls a function for each element in the array?

0 Answers  






What is the disadvantage of using innerhtml in javascript?

0 Answers  


How Does Function Hoisting Work in JavaScript?

0 Answers  


how to post the form without submit button with help of javascript

2 Answers  


What is the use of 'bind' method in JavaScript?

0 Answers  


What will be the output of the code below? var Y = 1; if (function F(){}) { y += Typeof F;</span> } console.log(y);

1 Answers  


When would you use var in your declaration and when you wouldn’t?

0 Answers  


What is a named function in JavaScript? How to define a named function?

0 Answers  


Categories