Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a URL like :

http://localhost/dms/mduserSecurity/UIL/index.php?menu=true&submenu=true&pcode=1235

I want to get the URL without the query string:

http://localhost/dms/mduserSecurity/UIL/index.php

Is there any method in JavaScript, not in PHP?

Currently I am using

var url = document.location.href;

but it returns the complete URL only.

share|improve this question

8 Answers

up vote 31 down vote accepted

Try this: window.location.href.split('?')[0]

share|improve this answer
3  
The safer/more correct method is the answer by Felix Kling. – Lincoln Jun 6 '11 at 20:22
@Lincoln: Why would you consider this as not safe? – Marcel Sep 18 '12 at 21:05
3  
@Lincoln - Why? I see no reason that this would be unsafe. It is also within specs (both the specs for what window.location.href should return and the specs for how URL's work) so it shouldn't have any future problems. It's more easily read and understood for cleaner code. It's shorter for smaller code. And lastly it's less intense and less complicated than Felix's answer. Not saying Felix is wrong, but am saying that without some sort of specific example of failure/insecurity that this answer is superior in pretty much every way. – Jimbo Jonny Sep 22 '12 at 22:16

Read about location:

var url = [location.protocol, '//', location.host, location.pathname].join('');
share|improve this answer
1  
location.protocol does not include // so http://stackoverflow.com would produce http:stackoverflow.com from your code. – Smirkin Gherkin Apr 28 '11 at 11:06
2  
@SmirkinGherkin: Yes, I just noticed this. Thanks! – Felix Kling Apr 28 '11 at 11:06

Try:

document.location.protocol + '//' +
document.location.host +
document.location.pathname;

(NB: .host rather than .hostname so that the port gets included too, if necessary)

share|improve this answer

just cut the string using split (the easy way):

var myString = "http://localhost/dms/mduserSecurity/UIL/index.php?menu=true&submenu=true&pcode=1235"
var mySplitResult = myString.split("?");
alert(mySplitResult[0]);
share|improve this answer
location.toString().replace(location.search, "")
share|improve this answer

Here are two methods:

<script type="text/javascript">
    var s="http://localhost/dms/mduserSecurity/UIL/index.php?menu=true&submenu
                                =true&pcode=1235";

    var st=s.substring(0, s.indexOf("?"));

    alert(st);

    alert(s.replace(/\?.*/,''));
</script>
share|improve this answer

Use properties of window.location

var loc = window.location;
var withoutQuery = loc.hostname + loc.pathname;
var includingProtocol = loc.protocol + "//" + loc.hostname + loc.pathname;

You can see more properties at https://developer.mozilla.org/en/DOM/window.location

share|improve this answer
var url = window.location.origin + window.location.pathname;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.