jrobinsonc
10/7/2016 - 7:31 PM

Read query strings

Read query strings

const qd = {};

location.search.substr(1).split("&").forEach(function(item) {
    var s = item.split("="),
        k = s[0],
        v = s[1] && decodeURIComponent(s[1]);
    (k in qd) ? qd[k].push(v) : qd[k] = [v]
});