I'm trying to emulate the same behavior as that of gmail where the URL changes depending on what link you clicked for example https://mail.google.com/mail/u/0/#inbox.
This link shows how to add a Hash parameter in the URL Rails Routes
Then can use jquery to modify the URL hash to add the hash parameter when the view is loaded
From my testing the following route /route#sent
is seen as /route
in the server
The part of the puzzle that i'm missing how to route to the corresponding route as the hash parameter is not sent to the server?