Skip to content

Instantly share code, notes, and snippets.

@kmaglione
Created May 14, 2015 20:19
Show Gist options
  • Save kmaglione/eb7be97b76b9092848ad to your computer and use it in GitHub Desktop.
Save kmaglione/eb7be97b76b9092848ad to your computer and use it in GitHub Desktop.
serialize: function(obj) {
var str = [];
for (var p in obj) {
if (obj.hasOwnProperty(p)) {
str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
}
}
return str.join("&");
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment