I have an onClick (React) handler on a table cell that fires properly, however I want to maintain the \"Open in a new Tab\" feature that having an href on a tag
href
The answer from @gunn is correct, target="_blank makes the link open in a new tab.
target="_blank
But this can be a security risk for you page; you can read about it here. There is a simple solution for that: adding rel="noopener noreferrer".
rel="noopener noreferrer"
text