Here we are some different types to get last value from array
function RemoveLastDirectoryPartOf(the_url) { var the_arr = the_url.split('/'); the_arr.pop(); return( the_arr.join('/') ); } var res = RemoveLastDirectoryPartOf(window.location.href); alert(res);
Try this simple method using lastIndexOf() and slice()
url = window.location.href; url = url.slice(0, url.lastIndexOf('/')); alert(url); url = url.slice(0, url.lastIndexOf('/')); alert(url);
You might also like:
How to get id by using name attribute in javascript20-03-2017 html id name javascript |
How to redirect one page to another page in php20-03-2017 redirect php |
How to get current date and time (yyyy-mm-dd H:i:s) using javascript09-03-2017 javascript date time |
How to change background color and color to the text using javascript27-02-2017 css javascript colors |
Send Mail in Node Js21-02-2017 node js mail npm module |