jsToolboxMJK.page.request.GET - mkloubert/jsToolbox GitHub Wiki
$jsTB.page.request.GET property
Stores the GET variables of the request URL.
Syntax
$jsTB.page.request.GET;
Remarks
The variable names are stored lower case and existing variables are overwritten (last wins).
Examples
// index.aspx?tm=5979&MK=23979
// '5979'
var a = $jsTB.page.request.GET.tm;
// '23979'
var b = $jsTB.page.request.GET['mk'];