Reputation: 11
When a user come to my site and on main page when user clicks on any post on post title that post should open in new tab. Its Google Blogger related.
Upvotes: 1
Views: 78
Reputation: 9
Your post title will be in an anchor tag, only you must include target
attribute and assign _blank
as the value for that as shown below so that after clicking that it will automatically opens in a new tab.
<a href="http://something.com" target="_blank">Post Title</a>
Upvotes: 0
Reputation: 838
your anchor tag or link should be looks like below with target="_blank"
:
<a href="Post.html" target="_blank">link</a>
Upvotes: 1