I have created an URL ROUTER using hash (for example, #User.Account) Now I want to include a search value in it as well (e.g. #/User.Account?id=729) How can I achieve this?
This is how my router currently functions:
if(window.location.hash == "#User.Account") {
// code for displaying account page
}