Get the full url including hash with content in JavaScript
How can I get url with content after hash ?
window.location return me url without hash :/
for example:
www.mystore.com#prodid=1
window.location return only www.mystore.com
window.location.hash
https://developer.mozilla.org/docs/Web/API/Window/location
Note the properties section.
Try window.location.hash
this will work
this returns just content after hash
window.location.hash.substr(1);
ex: www.mystore.com#prodid=1
this will give us : prodid=1
If you only want the hash part you can use : window.location.hash
If you want all the url including the hash part, you can use : window.location.href
Regards
You have to build it up yourself:
// www.mystore.com#prodid=1
var sansProtocol = window.location.hostname
+ window.location.hash;
// http://www.mystore.com#prodid=1
var full = window.location.protocol
+ "//"
+ window.location.hostname
+ window.location.hash;
The answers/resolutions are collected from stackoverflow, are licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0 .