Skip to content

Instantly share code, notes, and snippets.

@enliven-
Created July 1, 2014 10:17
Show Gist options
  • Save enliven-/23776771998d9dad80a2 to your computer and use it in GitHub Desktop.
Save enliven-/23776771998d9dad80a2 to your computer and use it in GitHub Desktop.
snippets from so + backbone tut for a ajax prefilter and a fn to serialize jq object
$.ajaxPrefilter(function (options, originalOptions, jqXHR) {
options.url = 'http://backbonejs-beginner.herokuapp.com' + options.url;
});
$.fn.serializeObject = function() {
var o = {};
var a = this.serializeArray();
$.each(a, function() {
if (o[this.name] !== undefined) {
if (!o[this.name].push) {
o[this.name] = [o[this.name]];
}
o[this.name].push(this.value || '');
} else {
o[this.name] = this.value || '';
}
});
return o;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment