Skip to content

Instantly share code, notes, and snippets.

@weslley39
Forked from lnmunhoz/sendArrayToController.js
Created February 13, 2014 17:35
Show Gist options
  • Save weslley39/8979960 to your computer and use it in GitHub Desktop.
Save weslley39/8979960 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