Skip to content

Instantly share code, notes, and snippets.

@brennovich
Created December 29, 2011 02:56
Show Gist options
  • Save brennovich/1531417 to your computer and use it in GitHub Desktop.
Save brennovich/1531417 to your computer and use it in GitHub Desktop.
Unobtrusive Ajax Example for Rail 3.1
$("select").change(function() {
var form = $(this.form);
$.post(
form.attr("action"),
form.serialize(),
null,
"script" // Datatype needed to format.js work
);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment