If the user clicks the link, then I would like to open a page in a new tab, and jump to #section on the parent site. How is it possible without JS?
This doesn’t work:
html
<a href="http://google.com" target="_blank"><a href="#section">link</a></a>
AFAIK, you have to use JavaScript to request multiple URLs via the same anchor.
With JavaScript, you would be able to watch for the onclick event to open a new window, like so: