Core Docs | Additional Modules Docs

sb.browser.$_GET


@Description: An array of all query params e.g. url?name=paul -> $_GET['name'] = 'paul'. There is a global reference to this name $_GET. Keys that are not foudn return false;
@File: browser/$_GET.js
@Example:
//if the url of the page was http://www.surebert.com?name=paul you could reference that query data like this
if($_GET['name'] =='paul){
    alert('hello paul');
}