What I get from location.href is like this:
location.href
http://stackoverflow.com/questions/ask
But I only want to get questions/ask
questions/ask
The location object has a pathname property.
location
This will give you /questions/ask and to remove the first character, use substring(1):
/questions/ask
substring(1)
var path = location.pathname.substring(1);