Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

we want to open a link in an existing window (where an ajax application is running, so a deep link on this specific window is needed to receive the data without refreshing the site).

This is the source site:

<html>
<body>
<a href="http://www.wikipedia.com" target="Test"> Open Wikipedia in Test window </a>
</body>
</html>

And this is the destination site:

<html>
<head>
<script type="text/javascript">
this.name = "Test";
</script>
</head>
<body>
Test
</body>
</html>

Both sites are loaded in different browser windows (or tabs, it doesn't matter). If you click on the link in the source site Wikipedia should be opened in the destination window with the Test target. On the most clients with IE9 it works, but on some IE9 clients Wikipedia is opened in the source instead the destination window. We see no differences in browser version or properties, do you have an idea why the behaviour is incorrect on some machines?

Thanks in advance Max

share|improve this question

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.