This has me really stymied - I am writing some HTML to a page using jQuery. Within that HTML is a basic link:
<a href="http://someurl.com" target="_blank" class="external-link">Link Text</a>
The issue is that for some reason, on certain mobile devices (Google Pixel and some iPhones), the link will NOT open in a new tab (either Chrome or Safari). So I tried doing it with JavaScript, using a click event on .external-link - same issue. It just opens in the same browser window on these problematic devices (works fine on mine).
I have confirmed that either way (target="_blank" or JS) does work on other multiple devices, including my Android phone. There are no settings that I can see in Chrome/Safari on these devices where it is not working that would be causing this behavior.
Any guesses as to the issue?