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

If I've for example an object like:

{start: 1, end: 2, someString="someStringValue"}

Is there any simple way to serialize it into a string of data? Example:

start=1&end=2&someString=someStringValue

Thanks.

share|improve this question

1 Answer

up vote 12 down vote accepted

You can use the param() function:

var str = jQuery.param({start: 1, end: 2, someString: "someStringValue"});
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.