I haven't found anything that has worked. I've tried all of the following, to no avail:
- added the attribute
target="_blank"
to the<a>
- added
target="someName"
to the<a>
- URL starts with
'/'
- URL starts with
Meteor.absoluteUrl()
- URL starts with
Meteor.absoluteUrl()
with the"http://"
removed - URL as string literal, not returned from template helper
<a>
inside{{#constant}}
region in template<a>
not inside{{#constant}}
region in template<a>
in the body outside of any template at all<a>
appended to the body in the browser consolewindow.open([url],[target])
with all the aforementioned combinations.
In all cases, the link opens in the same tab as where it was clicked, except for the URLs that didn't start with http://
, which opened an about:blank
page in a new tab.
Any idea what's causing this, or how to solve it?