Skip to content
Advertisement

javascript site root

I have this site that I need to find the root folder / plus the actual folder its works out of.

My problem here is that during development i have the folder with in my local server that in turn is with in its own folder:

Then online I then have the development site within a folder, so it can all be tested before the live production etc.

LOCAL SERVER: localhost/mytestSiteA/…

LIVE SERVER TEST FOLDER: www.asite.com/devbuild/….

Now I can retrieve the root via the

    document.location.hostname 

But i need then to add the folder name after this so that I can load in content etc when in developement mode.

LOCAL SERVER

 document.location.hostname + '/mytestSiteA/'

LIVE TEST SITE

 document.location.hostname + '/devbuild/'

But my issue is, is there an easy way to gain this inner folder rather than setting up variables determined on whether in local dev, live dev or live mode, as can be a pain, and would be nice to gain the current inner folder dynamically rather that manually changing etc so that I can add my paths correctly.

Also would help as if I have a folder within this that also loads in js script it can obtain its full path.

LOCAL SERVER: localhost/mytestSiteA/subsection/…

LIVE SERVER TEST FOLDER: www.asite.com/devbuild/subsection/…

I hope I have made this as easy to understand and put across. Si

Advertisement

Answer

try to switch

switch (document.location.hostname)
{
        case 'asite.com':
                          var rootFolder = '/devbuild/'; break;
        case 'localhost' :
                          var rootFolder = '/mytestSiteA/'; break;
        default :  // set whatever you want
}

and then use

var root = document.location.hostname + rootFolder;
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement