WINDOW.CLOSE () JAVASCRIPT FUNCTION IS NOT WORKING IN XPAGES

141 views Asked by At

WINDOW.CLOSE () JAVASCRIPT FUNCTION IS NOT WORKING IN XPAGES.

All ready I am tried window. close () but does not work in Mozilla Firefox

1

There are 1 answers

0
Howard On BEST ANSWER

It should work, I know I have used it but browser security will not allow you to close a window that was not opened by your code in another window.

Make sure your code is in a client side JavaScript event. There is no SSJS window.close (or window anything for that matter).

Howard