JMap.History.getHashParameters
Returns a JS object that contains all key / value entries present in the hash of the url.
// get all parameters in the url hashJMap.History.getHashParameters()// Ex. url = ***http://localhost:8080/services/ng#ngProjectId=0&myvar=test***// Will return this object :{ ngProjectId: 0, myvar: "test"} Copy
// get all parameters in the url hashJMap.History.getHashParameters()// Ex. url = ***http://localhost:8080/services/ng#ngProjectId=0&myvar=test***// Will return this object :{ ngProjectId: 0, myvar: "test"}
JMap.History.getHashParameters
Returns a JS object that contains all key / value entries present in the hash of the url.