Answers for "Obtener url raiz"

0

Obtener url raiz

function getRootUrl() {
            document.getElementById('rootresult').innerHTML += 
            window.location.origin 
                ? window.location.origin + '/'
                : window.location.protocol + '/' + window.location.host + '/';
            
            //
            getBaseUrl();
        }
Posted by: Guest on April-21-2022

Browse Popular Code Answers by Language