How To Open A Link In New Tab or New Window
Here we consider how to Open A Link In New Tab.
Lets start with one example here.
Suppose we have a link in our form as shown below.
<a href="http://www.technomark.in" > Technomark.In
</a>
When we click on this link, it will navigate to the address URL in the same tab.
What if we wants to open the address URL in a new Tab or new Window.
This can be achieved by adding target="_blank" within the Link.
An example is shown below.
<a target="_blank" href="http://www.technomark.in" > Technomark.In </a>
That's only, by adding target="_blank", we can open the destination URL in a new tab.