matthewselby
10/2/2017 - 11:09 PM

Some vanilla JS to make all links in footer open in new tab. See - http://usagen.staging.wpengine.com/

Some vanilla JS to make all links in footer open in new tab. See - http://usagen.staging.wpengine.com/

window.addEventListener('DOMContentLoaded', function() {
  var nuvoFooterLinks = document.querySelectorAll('.footer a');
  nuvoFooterLinks.forEach(function(link){
    link.setAttribute("target", "_blank");
  })
})