How to Route & how to get variable from url ?

Dear Support & freinds

I am using webix jet and need to get vars from url.
for example
https://domain/app.function?id=123456

  1. to link to this url from webix jet
  2. to get id value from url

Thank you
Ariya

Config in onurlchange:function contain url parameter.

in case:
http://localhost:4000/#!/ast/_utils.url:id=4

you can get “id” value from config.id
$onurlchange:function(config, url, $scope){
console.log(config.id);
}

Thank you