Skip to content

Instantly share code, notes, and snippets.

@miguelitodev
Last active June 25, 2021 20:05
Show Gist options
  • Save miguelitodev/4a0bbbe4fb08cea28425648a5b6f940b to your computer and use it in GitHub Desktop.
Save miguelitodev/4a0bbbe4fb08cea28425648a5b6f940b to your computer and use it in GitHub Desktop.

Prop target from tag

[_self] Open on own page

  <a href="https://youtube.com" target="_self">_self</a>

[_blank] The link opens a blank page, clicking again opens another blank page

  <a href="https://youtube.com" target="_blank">_blank</a>

[self - blank] It opens in a new page, but if you click again it reloads the one that has already been opened

  <a href="https://youtube.com" target="self">self</a>
  <a href="https://youtube.com" target="blank">blank</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment