Skip to content

Instantly share code, notes, and snippets.

@rgrove
Forked from sh1mmer/gist:354941
Created April 3, 2010 23:38
Show Gist options
  • Save rgrove/354949 to your computer and use it in GitHub Desktop.
Save rgrove/354949 to your computer and use it in GitHub Desktop.
var data = "";
for (p in parameterMap) {
data += p + "=" + encodeURIComponent(parameterMap[p]) + "&";
}
//kill the trailing &
data = data.slice(0,-1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment