Hello fellow Bloggers. A reader just asked about opening more than 1 link by clicking a link. I am presenting down the html code for that. You can open as many links by clicking single anchor text link. All the links will open in new tabs.
Like this
Your link html will look like this
Just take this example Blogger SEO by UK . This link will open our homepage in current tab and 2nd link in new tab. But the text shown is one for both link tabs. Down is the html code.
You can add as many links as you like with this code.
Hope its clear for all the readers. Have a good day!
To open link in new tab
A regular link can be opened in new tab. Just place target='_blank' after the URL.Like this
<a href="URL link" target="_blank">Text to Display</a>
To open multiple links in new tabs
To open more than one links just add the following codeonclick="window.open("YOUR_2nd_URL");"
Your link html will look like this
<a href="1st Link" onclick="window.open("2nd_Link");">Link Text</a>
Just take this example Blogger SEO by UK . This link will open our homepage in current tab and 2nd link in new tab. But the text shown is one for both link tabs. Down is the html code.
<a href="http://www.blogtipsuk.com/" onclick="window.open("http://www.blogtipsuk.com/2015/05/how-to-make-money-with-infolinks-on-blogger.html");">Blogger SEO by UK</a>
You can add as many links as you like with this code.
Hope its clear for all the readers. Have a good day!
No comments:
Post a Comment