Thursday, September 17, 2009

DOCUMENT LOCATION

I cannot count how many times I've saved this snippet's bookmark in 3 different browsers, yet when I need it, it's NOT BEEN SAVED! ARGH! So I'm solving the damn problem once and for all!



Say you have a location of:

http://www.irt.org:8080/some/where/deep/inside/filename.htm?name=martin#anchorname

This corresponds to:

protocol://hostname:port/pathname?search#hash

Then:

alert(location.href); // displays 'http://www.irt.org:8080/some/where/deep/inside/filename.htm?name=martin#anchorname'

alert(location.protocol); // displays 'http:'
alert(location.hostname); // displays 'www.irt.org'
alert(location.host); // displays 'www.irt.org:8080'
alert(location.port); // displays '8080'
alert(location.pathname); // displays '/some/where/deep/inside/filename.htm'
alert(location.search); // displays '?name=martin'
alert(location.hash); // displays 'anchorname'

To get just the directory path, use:

alert(location.pathname.substring(0,location.pathname.lastIndexOf('/'))); // displays '/some/where/deep/inside'

 

No comments:

Post a Comment