I have a URL like http://localhost/dms/mduserSecurity/UIL/index.php?menu=true&submenu=true&pcode=1235
.
I want to get the URL without the query string: http://localhost/dms/mduserSecurity/UIL/index.php
.
Is there any method for this in JavaScript? Currently I am using document.location.href
, but it returns the complete URL.
Try this:
window.location.href.split('?')[0]
Use properties of
window.location
You can see more properties at https://developer.mozilla.org/en/DOM/window.location
If you also want to remove hash, try this one:
window.location.href.split(/[?#]/)[0]