Make links open in new window Blogger
Most of the blogging platforms like wordpress and joomla automatically opens certain links on new tabs instead of same window on direct left clinking and not right click and selecting open in new tab . Even many webmasters make blogroll and advertisement links open in new tabs . Similarly it is easily possible to tweak for Blogger Blogspot users .
Here is example ;
To open in new tabs / windows :
Input:
<a href="TARGET" target="_blank">TEXT HERE </a>
Now i want people to see Subscribe to our Feed instead of TEXT HERE
so i will replace that one and similarly the TARGET by feed url http://feeds.feedburner.com/theqwertywebblog
Output:
Subscribe to our Feed
As you can observe the above link,when clicked it will open in a NEW window.
To open in same tabs / windows :
Input :
<a href="TARGET">TEXT HERE </a>
Now i want people to see Subscribe to our Feed instead of TEXT HERE
so i will replace that one and similarly the TARGET by feed url http://feeds.feedburner.com/theqwertywebblog
As you can observe the above link,when clicked it will open in same window.