jQuery.String.deparam  function     

Takes a string of name value pairs and returns a Object literal that represents those params.

$.String.deparam(params) -> Object
{String}

a string like "foo=bar&person[age]=3"

{Object}

A JavaScript Object that represents the params:

{
  foo: "bar",
  person: {
    age: "3"
  }
}
© Jupiter IT - JavaScriptMVC Training and Support