Skip to content

Instantly share code, notes, and snippets.

@kidchenko
Forked from lnmunhoz/sendArrayToController.js
Created February 13, 2014 17:30
Show Gist options
  • Save kidchenko/8979835 to your computer and use it in GitHub Desktop.
Save kidchenko/8979835 to your computer and use it in GitHub Desktop.
$.ajaxSettings.traditional = true; // <-- Important
$('#btn').click(function () {
var array = [];
var url = '/Controller/Action';
$.post(url, { array : array });
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment