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".

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

How can you get the total number of arguments passed to a function?

605


What is javascript ‘strict mode’?

490


What is missing in my code? function numberTally(numList) { var evenTotal = 0; var oddTotal = 0; for (var i = 0; i <= numList.length; i++) { if i % 2 { // i is odd oddTotal += numList[i]; // or oddTotal = oddTotal + numList[i]; } else { // i is even evenTotal + numList[i]; } } alert(oddTotal); return evenTotal; }

2902


What is difference between arrow function and normal function?

479


How to reload the current page?

552






How to Object.entries( ) In JavaScript ?

559


What are escape characters in javascript?

495


In Java coding we will write a public static void main()? Why won't we write as a static public void main()

2125


What is the difference between undefined and not defined in JavaScript?

526


I need project details about WEB CONTENT FILTERING USING NEURAL NETWORKS and how to explain it....plz help me in this topic.....

1701


Explain the steps for connecting the system to Internet.

1685


What is meant by object oriented programming?

455


Write about the errors shown in javascript?

477


What is the concept of “functions as objects” and how does this affect variable scope?

481


How do I enable cookies safari?

482