I can open my links in a different (browser)tab like <base target='_new' />
Unfortunately it opens all the links on my page. I really would like to exclude curtain links. How could I do this? (I dont mind javascript/Jquery)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could use
<a href="http://example.com/" target="_new">Url</a>on every link you want to open in a new tab and not use base target.
Or use e.g. jQery and set a class to every link you don’t want to open in a new tab:
<a href="http://example.com/" class="prevent">Url</a>