Reputation: 29719
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
Upvotes: 24
Views: 21806
Reputation: 101594
window.location.hash
https://developer.mozilla.org/docs/Web/API/Window/location
Note the properties section.
Upvotes: 33
Reputation: 30144
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;
Upvotes: 1
Reputation: 449
this returns just content after hash
window.location.hash.substr(1);
ex: www.mystore.com#prodid=1
this will give us : prodid=1
Upvotes: 3
Reputation: 409
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
Upvotes: 2