I'm trying to figure out if there's a way to open a new tab using "javascript:location.href". I can't use other methods to open the link because it needs to get the ID of a certain member of my website when it loads. I also can't make a javascript function because I have more than one link to open.
target="_blank" //didn't work
Here's a piece of my code:
<a onclick="javascript:location.href='website.com' + location.search"><a/>
If there are other ways to do this, please let me know.