i have
var uri = window.location.href; that provides http://mysite.com/something#hash
what's the best and easiest way to get the entire path without the #hash?
uri = http://mysite.com/something#hash nohash = http://mysite.com/something
I tried using location.origin+location.pathname which doesn't work in every browser. I tried using location.protocol+'//'+location.host+location.pathname which looks like kind of a crappy solution to me.
What is the best and easiest way to do so? maybe I query for location.hash and try to substr() this from the uri?
any ideas?
#sectionon the same page, just set the link href to#section. You don't need to get the page's base url then concatenate the hash on the end. – Web_Designer Feb 25 at 6:59