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