base.js 235 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 function getQuery(name) { var result = window.location.search.match(new RegExp("[\?\&]" + name + "=([^\&]+)", "i")); if (result == null || result.length < 1) return undefined; return decodeURIComponent(result[1]); }