We are having major problems getting our application to work in both Internet Explorer and Safari.
Our application makes extensive use of Windows.Opener in Javascript. However, we get errors in Safari saying that Windows.Opener is Null.
I'm trying to check Windows.Opener to see if it is Null before proceeding, by using:
if (typeof(window.opener) == null)
{
alert('Null detected')
}
else
{
alert('Not a Null')
}
However, even this produces an error in Safari, whereas Internet Explorer gives the alert 'Not a Null'.
Any clues on how I access Windows.Opener in Javascript using Safari?
On a side note, when I get this working in Safari for Windows, will it definitely work on Macs and iPads?
Thanks.
typeof(null)is typically not null (but'object'). – Julian D. Feb 21 at 11:40