'Html page embedded inside android native app cannot open links in external tab
I created an html page ( footer ) that contains some links that are supposed to be opened in a new tab when clicked . the html page was embedded in an iOS and android native apps . in the IOS app , the links works fine ( when clicked , a new tab is opened ) , but in the android app nothing happens when I click on the links . this behavior was tested on many devises . what could be the reason of this issue ?
sample of the html content on the page :
<div class="footer">
<div class="item ">
<a href="https://text/" target="_blank">
test
</a>
</div>
</div>
Solution 1:[1]
To open a link in new browser tab you can use the following HTML code
<a href="https://protecgames.godaddysites.com/" target="blank"> ProTec Games </a>
The target should be left blank if you want to open new tab.
For more clearly see an example on W3School
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |
