Closing window in FireFox ?
-
Michael Sync wrote:
Try this link.
Also this solution does not work !! I think this is the final answer: "You can only close a window with JavaScript that you opened with JavaScript. If your visitor opened the window then you can't close it." Check this: http://www.webdeveloper.com/forum/showthread.php?t=153088
yeah . seems like that.....
Thanks and Regards, Michael Sync ( Blog: http://michaelsync.net)
-
Michael Sync wrote:
Try this link.
Also this solution does not work !! I think this is the final answer: "You can only close a window with JavaScript that you opened with JavaScript. If your visitor opened the window then you can't close it." Check this: http://www.webdeveloper.com/forum/showthread.php?t=153088
Actually, there is a workround. Try this:
window.opener = top; window.close();
Please visit http://www.readytogiveup.com/ and do something special today. Deja View - the feeling that you've seen this post before.
-
Actually, there is a workround. Try this:
window.opener = top; window.close();
Please visit http://www.readytogiveup.com/ and do something special today. Deja View - the feeling that you've seen this post before.
-
Curses to FireFox. Works fine in IE... darn it.
Please visit http://www.readytogiveup.com/ and do something special today. Deja View - the feeling that you've seen this post before.
-
After executing the statement, did you see the
JavaScript console
for any error messages?Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
Curses to FireFox. Works fine in IE... darn it.
Please visit http://www.readytogiveup.com/ and do something special today. Deja View - the feeling that you've seen this post before.
Pete O`Hanlon wrote:
Works fine in IE
It is actually a browser-cheat-trick. You cheat the browser by making it think that its window is your-own. As a new browser security patches come up, it is most likely that our workaround might cease to function.
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
Curses to FireFox. Works fine in IE... darn it.
Please visit http://www.readytogiveup.com/ and do something special today. Deja View - the feeling that you've seen this post before.
-
After executing the statement, did you see the
JavaScript console
for any error messages?Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
Pete O`Hanlon wrote:
Curses to FireFox.
FireFox is the best browser (for the web developers).
True. I like the 'Javascript Console' very much. Even Venkman's Debugger is nice. Have you used it?
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
True. I like the 'Javascript Console' very much. Even Venkman's Debugger is nice. Have you used it?
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
Pete O`Hanlon wrote:
Curses to FireFox.
FireFox is the best browser (for the web developers).
I know - I do like it a lot. I was being ironic here.
Please visit http://www.readytogiveup.com/ and do something special today. Deja View - the feeling that you've seen this post before.