I am using below code to open a new url, however my target="_blank" tag is not working and the site loads into the same page. Please help me.
<meta http-equiv = "refresh" content = "3; url = https://www.test.com" target="_blank"/>
I am using below code to open a new url, however my target="_blank" tag is not working and the site loads into the same page. Please help me.
<meta http-equiv = "refresh" content = "3; url = https://www.test.com" target="_blank"/>
This answer might work for you: How to redirect in "NEW" tab with meta
For your case, you can try the following solution:
<meta http-equiv="refresh" content="3; URL=javascript:window.open('https://test.com','_blank');">
Regards,
AJ
The following will work for you:
<meta http-equiv="refresh" content="3; URL=javascript:window.open('https://www.test.com','_blank');">