I am developing a web site where users can change settings which they have to confirm before taking effect.
The confirmation is done by a link I send them via E-Mail. In the HTML of the website I use this little snippet:
<script type="text/javascript">window.name="mysite";</script>
And in the HTML emails I use
<a href="..." target="mysite">Click me</a>
But Chrome is always opening new tabs instead of opening them all in one.
Is this even possible or is it forbidden for some reasons?