Answers for "base_url js"

1

find base url in javascript

var base_url = window.location.origin;

var host = window.location.host;

var pathArray = window.location.pathname.split( '/' );
Posted by: Guest on February-17-2021
2

javascript get base url

console.log(window.location.origin);
Posted by: Guest on March-04-2020

Code answers related to "base_url js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language