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