Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
querystring encoding of a javascript object

I'm trying to make a request to a website and embed the result as an iframe in the page using javascript. I need to pass a number of parameters in the request as querystring variables and I'd like to be able to specify the parameters as an object, passing them to a function to produce a querystring so they are easy to read, maintain and manipulate.

How can I construct the querystring of a URL from a JSON object with simple values? I would expect this example:

{
    h:300,
    w:300,
    skip:500,
    count:50
}

to produce the following querystring:

h=300&w=300&skip=500&count=50

Are there any existing library functions to do this, or is the best thing to loop over the properties myself?

share|improve this question
If you're using jQuery, .serialize() works pretty well. – Andrew Whitaker Jan 7 at 14:28
It's close to being a duplicate. I'd suggest the difference is that I'm willing to use any libraries where the related question is not. – Tragedian Jan 7 at 14:35
His adversity to using the answers doesn't make them any less valid for you. Check out his answers and you have yours. oleq's answer is the second answer there. – rlemon Jan 7 at 14:38
Right you are - I didn't go beyond the accepted answer on my first read. – Tragedian Jan 7 at 14:39

marked as duplicate by Andrew Whitaker, Bergi, Florian Margaine, rlemon, Peter O. Jan 7 at 15:53

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 4 down vote accepted

jQuery has a built-in method for this: jQuery.param()

share|improve this answer

I recommend you use jQuery's param(). Here is the documentation http://api.jquery.com/jQuery.param/

You would pass your object like so:

var myObj = { h:300, w:300, skip:500, count:50 }

console.log('=>', $.param(myObj) ); // prints => h=300&w=300&skip=500&count=50

share|improve this answer

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