Christopher Philip Hebert

Back to Home

Blog

Back to Blog

Previous Next

2025-03-12

Continuing the single page application saga... I found that it current prevents Command+Click from opening in a new tab. Gotta fix that.

Also encountered mention of target="_blank".

So far, have this on deciding which link to do:


if (!href ||
href.startsWith('http') ||
href.startsWith('//') ||
href.startsWith('#') ||
href.includes(':') ||
anchor.getAttribute('target') === '_blank') {
return;
}

And this on deciding which 'click' events to control:


if (e.metaKey || e.ctrlKey || e.shiftKey || e.altKey || e.button !== 0) {
return;
}