Skip to content

Instantly share code, notes, and snippets.

@yosriady
Created August 25, 2014 06:54
Show Gist options
  • Select an option

  • Save yosriady/91f0a1c2f0153f99f145 to your computer and use it in GitHub Desktop.

Select an option

Save yosriady/91f0a1c2f0153f99f145 to your computer and use it in GitHub Desktop.
Rails AJAX Sort
$(document).on("page:change", function() {
$("#sheet_sort_order").change(function () {
data = {
"sort_order": this.value
};
$.get("/sheets", data, undefined, "script");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment