quiero abrir los datos de mi enlace con el botón derecho y abrir eso por ahora estoy haciendo window.location = "/MMPDataQuality/ViewMMPReferenceData?validator_id=" + id; [1]: https://i.stack.imgur.com/fEmaB.png
Puede usar el siguiente fragmento.
window.open(url, '_blank').focus();Ejemplo de página html
<html> <body> <a onClick="javascript:openInTab('https://facebook.com')" href="" target>facebook</a> <script> function openInTab(url){ window.open(url, '_blank').focus(); } </script> </body> </html>