0

I have an about link on my home page on click of that link that it opens in a new browser tab. How can I go back to the previous page (home page) browser tab by closing the newly opened about page browser tab.

<a href="#" onclick="location.href = document.referrer; return false;">Go to previous page</a>

By using above code its going back to the previous page in new tab.

GrahamTheDev
  • 22,724
  • 2
  • 32
  • 64
newJS37
  • 33
  • 1
  • 6

1 Answers1

1

Use window.close() to close an opened tab.

Andy
  • 603
  • 6
  • 16