Skip to content

Instantly share code, notes, and snippets.

View Artod's full-sized avatar
🎯
Focusing

Artem Belousov Artod

🎯
Focusing
View GitHub Profile
@Artod
Artod / jquery.unserialize.js
Created April 11, 2012 14:20 — forked from rcmachado/jquery.unserialize.js
$.unserialize for jQuery
/**
* $.unserialize
*
* Takes a string in format "param1=value1&param2=value2" and returns an object { param1: 'value1', param2: 'value2' }. If the "param1" ends with "[]" the param is treated as an array.
*
* Example:
*
* Input: param1=value1&param2=value2
* Return: { param1 : value1, param2: value2 }
*