Window.open()
Is not returning the value
Like
Var retVal = Window.showModalDialog();
How to get it for the Chrome browser?
Window.open()
Is not returning the value
Like
Var retVal = Window.showModalDialog();
How to get it for the Chrome browser?
https://developer.mozilla.org/en-US/docs/Web/API/Window/showModalDialog
Of course, Window.showModalDialog
is a JavaScript method unique to Internet Explorer, and no other browser supports this specific method.
If you don't consider the incompatibility of the method, you can use Window.open
to override Window.showModalDialog
instead.
Or refer to the link below, which mentions a compatible alternative.