I'm wondering how I can add a new parameter to an existing url. The problem is: the url may also contain an anchor.

For example:

http://www.example.com?foo=bar#hashme

And I want to add another parameter to it, so it results in this:

http://www.example.com?foo=bar&x=y#hashme
link|improve this question

76% accept rate
1  
possible duplicate of Adding a parameter to the URL with JavaScript – Bertrand Marron Aug 5 '11 at 9:18
I found that at first, but the question does not deal with anchors AND it deals with the document's current url. Here I have to deal with anchors and I use external urls. – skerit Aug 5 '11 at 9:38
It only overrides document.location.search. – Bertrand Marron Aug 5 '11 at 9:43
feedback

4 Answers

Try this:

location.href = location.href.replace(location.hash, '') + '&x=y' + location.hash

Update

What about this:

var a = document.createElement('a');
a.href = "http://www.example.com?foo=bar#hashme";

var url = a.href.replace(a.hash, '') + '&x=y' + a.hash;

I found out that the location object can be created by an anchor element(from Creating a new Location object in javascript).

link|improve this answer
Ah yes, I thought about those, but I'm not using the current location, always another url. – skerit Aug 5 '11 at 9:20
feedback
up vote 1 down vote accepted

I used parts of The Awesome One's solution, and a solution found on this question:

Adding a parameter to the URL with JavaScript

Combining them into this script:

function addParameter(url, parameterName, parameterValue){

    replaceDuplicates = true;

    if(url.indexOf('#') > 0){
        var cl = url.indexOf('#');
        urlhash = url.substring(url.indexOf('#'),url.length);
    } else {
        urlhash = '';
        cl = url.length;
    }

    sourceUrl = url.substring(0,cl);



    var urlParts = sourceUrl.split("?");
    var newQueryString = "";

    if (urlParts.length > 1)
    {
        var parameters = urlParts[1].split("&");
        for (var i=0; (i < parameters.length); i++)
        {
            var parameterParts = parameters[i].split("=");
            if (!(replaceDuplicates && parameterParts[0] == parameterName))
            {
                if (newQueryString == "")
                    newQueryString = "?";
                else
                    newQueryString += "&";
                newQueryString += parameterParts[0] + "=" + parameterParts[1];
            }
        }
    }
    if (newQueryString == "")
        newQueryString = "?";
    else
        newQueryString += "&";
    newQueryString += parameterName + "=" + parameterValue;

    return urlParts[0] + newQueryString + urlhash;
}

Example: addParameter('http://www.example.com?foo=bar#hashme', 'bla', 'valuebla')

Results in http://www.example.com?foo=bar&bla=valuebla#hashme

link|improve this answer
feedback

Something like this ?

var param = "x=y";
var split = url.split('#');
url = split[0] + '&' + param + "#" + split[1];
link|improve this answer
feedback

Easy.

<script>
function addPar(URL,param,value){
var url = URL;
var hash = url.indexOf('#');
if(hash==-1)hash=url.length;
var partOne = url.substring(0,hash);
var partTwo = url.substring(hash,url.length);
var newURL = partOne+'&'+param+'='+value+partTwo
return newURL;
}
document.write(addPar('http://www.example.com?foo=bar','x','y')) // returns what you asked for
</script>

The code could be modified a bit, and made a little more efficient, but this should work fine.

@Sangol's solution's better. Didn't know a location.hash property existed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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