JMap.History.getHashParameter
Returns a JS object that contains all key / value entries present in the hash of the url.
Returns an empty string if parameter's not found.
Error if parameterName is not a valid string
// Ex. url = ***http://localhost:8080/services/ng#ngProjectId=0&myvar=test***JMap.History.getHashParameter("myvar")// returns "test"JMap.History.getHashParameter("myvardoesntexist")// returns "" Copy
// Ex. url = ***http://localhost:8080/services/ng#ngProjectId=0&myvar=test***JMap.History.getHashParameter("myvar")// returns "test"JMap.History.getHashParameter("myvardoesntexist")// returns ""
JMap.History.getHashParameter
Returns a JS object that contains all key / value entries present in the hash of the url.
Returns an empty string if parameter's not found.