Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
survivor_library_table [2023/09/22 05:53] demiurgesurvivor_library_table [2023/09/22 05:54] (current) demiurge
Line 256: Line 256:
     document.querySelectorAll('table a[href]').forEach(function(anchor) {     document.querySelectorAll('table a[href]').forEach(function(anchor) {
         anchor.href = 'https://www.survivorlibrary.com' + anchor.getAttribute('href');         anchor.href = 'https://www.survivorlibrary.com' + anchor.getAttribute('href');
 +        anchor.setAttribute('target', '_blank');
 +        anchor.setAttribute('rel', 'noopener noreferrer');
     });     });
 </script> </script>
 </HTML> </HTML>