¿Cómo puedo hacer que un hipervínculo href HTML abra una nueva ventana usando window.location?
hyperlink (1)
Este es mi código:
<a href="http://www.google.com" onClick="window.location.href=''http://www.yahoo.com'';return false;" target="_blank">test</a>
Cuando haces clic en él, te lleva a Yahoo pero ¿no se abre una nueva ventana?
<a href="#" onClick="window.open(''http://www.yahoo.com'', ''_blank'')">test</a>
Tan fácil como eso.
O sin JS
<a href="http://yahoo.com" target="_blank">test</a>