I have this URL http://www.something.com/category and
top.location.href.substr(0, top.location.href.lastIndexOf("/") );
returns http://www.something.com
However if I have the URL http://www.something.com/category/something how can I again retrieve http://www.something.com by removing the 2nd last appearance of "/" …
Any idea? I know there is stuff like top.location.origin. I need a way to cut the last two "slashes" off!
www.something.com/category/something/things/, then what? I believe your question is how to get the URL without paths. – TJHeuvel Jan 27 '12 at 15:30var foo = url.split('/', 3).join('/');– Yoshi Jan 27 '12 at 15:33/whatever/everpath-parts. If the URL haswww.some.thing/one/two/three/fourI want to get rid of/three/four– matt Jan 27 '12 at 15:59/one/two/three, strip/two/three. – Rob W Jan 27 '12 at 16:02