montegomarmores.com.br Open in urlscan Pro
187.1.136.222  Public Scan

Submitted URL: http://montegomarmores.com.br/assets/js/href-target-validate.js
Effective URL: https://montegomarmores.com.br/assets/js/href-target-validate.js
Submission: On November 19 via api from US — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

(function(){
    "use strict";
    
    function hrefTargetValite(){

        const hrefElements = Array.from(document.querySelectorAll('a')).filter(i => i.attributes[0].value.includes('http'));

        if(hrefElements.length > 0){
            hrefElements.map(hrefElement => {
                if(!hrefElement.getAttribute('target') || hrefElement.getAttribute('target') !== 'blank'){
                    hrefElement.setAttribute('target', '_blank');
                }
            });
        }
    
    }


    /**
     * 
     * Executa ao completar o carregamento do DOM
     * 
    */
    window.addEventListener('DOMContentLoaded', hrefTargetValite);

})();