Answers for "get last page url in js"

5

jquery get current url

var currentURL = $(location).attr('href'); //jQuery solution
var currentURL = window.location.href; // raw javascript
Posted by: Guest on July-23-2019
-1

javascript get last url segment

console.log(this.href.substring(this.href.lastIndexOf('/') + 1));
Posted by: Guest on December-14-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language