I have got a page which has a link pertaining to a close window function.
The window.close() function works perfectly fine in the case of IE based browsers , however it fails to respond on a Mozilla browser(working on tab panes) . I have tried to make use of self.close(), document.close , but there has been no progress.
I have also tried the following code , but have not been successful
MyWindow = window.open('','_parent','');
MyWindow.close();