Удалить тег "a".Вместо этого используйте любой другой тег.Реализуйте его с помощью javascript, например addEventListener, для изменения содержимого правого фрейма
или вы можете удерживать все ссылки, как показано ниже
`` `
document.addEventListener("click",function(e){
// {Boolean} e.ctrlKey - if user press ctrlKey when clicking
if(e.ctrlKey && e.target.tagName === "A"){
e.preventDefault();
// manually handle your content changing
// below is a simple example, your should modify it under your logic
document.querySelector("your-right-iframe").src = e.target..getAttribute("href")
}
// the true means you are in capture mode
},true)
` ``