This is one of those situations where I feel like I\'m missing a crucial keyword to find the answer on Google...
I have a bag of parameters and I want to make the br
This is similar to the above except it will handle Array parameters being passed to MVC
(function($) {
$.extend({
getGo: function(url, params, traditional) {
///
/// Perform a GET at url with specified params passed as part of the query string.
///
///
///
/// Boolean: Specify true for traditional serialization.
document.location = url + '?' + $.param(params, traditional);
},
postGo: function (url, params) {
///
/// Perform a POST at url with the specified params as part of a form object.
/// If a parameter is an array then it will submit it as multiple attributes so MVC will see it as an array
///
///
///
var $form = $("