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.

link|improve this question

What is the error? And, why are you checking the type of window.opener? typeof(null) is typically not null (but 'object'). – Julian D. Feb 21 at 11:40
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.