up vote 0 down vote favorite
share [g+] share [fb]

HI all.

I have a static HTML page which is named via javascript as such: window.name = "windowname". This window opens a popup window, which contains links that target 'windowname'.

This works as expected in IE/FF/Chrome and opens the links on the opener, howeve Safari opens all links in a new window and not the opener.

Is anyone aware of a workaround or solution to this other than using javascript to open the links via opener.location.href? Is this a security 'feature' of Safari or some other kind of issue?

Thanks in advance -

b

link|improve this question

Adding window.id didn't help the issue. What is strange is that testing this as a file works fine even in Safari, testing it on a server (localhost or remote) it does not work which leads me to believe it's some sort of security 'feature' ? – WillyCornbread Nov 2 '09 at 15:29
feedback

3 Answers

Trying setting the "id" attribute to the same string as the name.

link|improve this answer
feedback

Not 100% sure what you problem is without being able to see your code but the following worked for me in Safari 4:

windowname:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
    <title>untitled</title>

</head>

<body onload="window.name='windowname'">
<a href="#" onclick="window.open('popup.html')">Open</a>

</body>
</html>

popup:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
    <title>untitled</title>

</head>

<body>
<a href="http://google.com" target="windowname">test</a>
</body>
</html>
link|improve this answer
Thanks for the time - this will work for me as a first click, can you add another link to the popup and change the opener a second time? Again, it works fine locally, but not on a server... – WillyCornbread Nov 2 '09 at 16:20
feedback
up vote 0 down vote accepted

No resolution for this was ever found, I had to go with a method that didn't use pop-up windows due to this.

thanks for the effort.

b

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.