2

stay in current page but open link in new tab

I want to be in the same/current page but when I click on the link should open in another tab but I should be in the current page

1 Answers1

0

just give attribute to your a tag, target="_blank" so browser will always open your link in new tab instead going directly, for example:

<a href='http://example.com' target="_blank">
Mercurial
  • 1
  • 3