(function () {
const params = window.location.search;
if (!params) return;
document.querySelectorAll('a[href]').forEach(link => {
const href = link.getAttribute('href');
// Ignore anchors, JavaScript links, and external links
if (
!href ||
href.startsWith('#') ||
href.startsWith('javascript:') ||
href.startsWith('mailto:') ||
href.startsWith('tel:') ||
link.host !== window.location.host
) {
return;
}
// Avoid double-appending params
if (href.includes('?')) {
link.href = href + '&' + params.substring(1);
} else {
link.href = href + params;
}
});
})();