Navigation Links
HomeWebViewGold offers several options on how to handle different kinds of navigational links that are loaded in your web app.
The following are examples of different kinds of links for testing purposes.
Internal Link = a link with the SAME domain as your web app's domain.
External Link = a link with a DIFFERENT domain to your web app's domain.
Normal Link = a link that simply opens in the same window, no extra instructions attached.
Special Link = a link that has instructions attached to open in a new window.
Internal Links (internalPage.html)
Normal Links
href="internalPage.html"href="internalPage.html" target="_self"
Special Links
href="internalPage.html" target="_blank"window.open('internalPage.html')
window.open('internalPage.html', '_blank')
External Links (www.google.com)
Normal Links
href="https://www.google.com"href="https://www.google.com" target="_self"
Special Links
href="https://www.google.com" target="_blank"window.open('https://www.google.com')
window.open('http://www.google.com', '_blank')