You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

extra.js 194B

1234567891011
  1. window.addEventListener('load', () => {
  2. //
  3. // Open links in a new window
  4. //
  5. document.querySelectorAll('a._blank').forEach(link => {
  6. link.target = '_blank';
  7. });
  8. });