- Choosing a selection results in a full page refresh.
document.addEventListener('DOMContentLoaded', function() {
function openLinksInNewTab() {
const section = document.querySelector('[id*="blocks_gUiEwd"]');
if (section) {
const links = section.querySelectorAll('a');
links.forEach(function(link) {
link.setAttribute('target', '_blank');
link.setAttribute('rel', 'noopener noreferrer');
});
}
}
openLinksInNewTab();
const observer = new MutationObserver(openLinksInNewTab);
observer.observe(document.body, { childList: true, subtree: true });
});

