Search code examples
javascriptjquerypathname

Getting full URL with jQuery including parameters after question mark?


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

http://myurl.com/ebook

How can I get the entire URL?


Solution

  • You have:

    window.location.href
    

    and also:

    document.URL