Rohan Kumar
Rohan Kumar

Reputation: 11

How to automatically open a post in new tab when user clicks on the post?

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

Answers (2)

T Chakradhar
T Chakradhar

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

Yogesh Patel
Yogesh Patel

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

Related Questions