<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<a href="/типо-сайт/" style="font-size:64pt">ссылка</a>
</body>
<script type="text/javascript">
<code lang="javascript">
document.addEventListener('click', function(e){
if(event.target.nodeName=='A'){
window.location.href=event.target.href+window.location.search;
return !0
}
});
</code>
</script>
</html>
let timerId = setTimeout(function tick() {
timerId = setTimeout(tick, 1000);
var hrefs = document.getElementsByTagName('a');
[].forEach.call(hrefs,function(el){
el.onclick = function (e) {
window.location.href=event.target.href+window.location.search;
return false;
}
});
}, 1000);