Not sure where to start? Let us help you! These starter kits are a great way to be introduced to the product and procedures! They also make great gifts!
var links = document.links;
for (let i = 0, linksLength = links.length; i < linksLength; i++) {
if (links[i].hostname !== window.location.hostname) {
links[i].target = '_blank';
links[i].rel = 'noreferrer noopener';
}
}