All I want is to get the website URL. Not the URL as taken from a link. On the page loading I need to be able to grab the full, current URL of the website and set it as a va
You can get the current URL location with a hash tag by using:
JavaScript:
// Using href var URL = window.location.href; // Using path var URL = window.location.pathname;
jQuery:
$(location).attr('href');