I am trying to use jQuery to get the current full URL of a page. The URL of a page looks like this:
http://myurl.com/ebook?page=43
If I use window.location.pathname
it only returns everything before the ? so I would just get
How can I get the entire URL?
You have:
window.location.href
and also:
document.URL