Make window.open as anchor tag

Viewed 44

Currently I am opening a new tab using window.open(url) and working fine.

But here, I required to make it as anchor tag because on mouse right click and open link in new tab is not showing for the window.open.

Can please suggest how I can convert window.open to anchor tag?

Also currently window.open capturing the parent window and performing the some activities.

1 Answers

Try this instead!

<a href="#" target="_blank"> Link Text </a>
Related