<script> function cambia_enlace(){ var elemento = document.getElementById("enlace"); elemento.innerHTML = 'Enlace a Briored - Javascript'; elemento.href = "https://www.briored.com/category/javascript/" } function cambia_target(){ var elemento = document.getElementById("enlace"); elemento.innerHTML += ' - en ventana nueva'; elemento.target = "_blank" } </script> <div id="botones"> <input type="button" onclick="javascript:cambia_enlace();" value="Cambia enlace" /> <input type="button" onclick="javascript:cambia_target();" value="cambia target" /> </div> <div id="capa"> <a id="enlace" href="https://www.briored.com">Enlace a Briored</a> </div>