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 in JavaScript, not in PHP?
Currently I am using
var url = document.location.href;
but it returns the complete URL only.