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 love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With