See also: parseQueryString |
Builds a query string from the object array created with JSV_parseQueryString
.
JSV_buildQueryString()
n/a
Returns the built query string.
n/a
The JSV_buildQueryString
takes the attribute/value pairs from the
qsArray
object array and builds a valid query string.
The JSV_buildQueryString
is used in many of the other utility functions
and can be used to create other functions.
n/a
The following lines of code
var qs = "?ABC=123&L=Page1&Music=R%26B";
JSV_parseQueryString(qs);
var rebuilt = JSV_buildQueryString(qs);
document.write( "The rebuilt query string is " + rebuilt.bold() );
produce
Copyright © 1998-2000 Roaring Fork Software. All rights reserved.