How I can get the URL portion of an URL using jQuery?
I have this URL: http://127.0.0.1/deposito/site/main/lojas.php. How I can get lojas.php?
|
How I can get the URL portion of an URL using jQuery? I have this URL: |
||||
|
|
|
JavaScript:
|
|||
|
|
|
You can use JavaScript and a regex to retrieve the file name like this:
The above solution is more comprehensive, but something as simple as this would work in the majority of cases:
If you need to use jQuery, you can use the
Here's a link to the plugin: |
||||
|
|
|
If it's the document's current URL, you can "split-pop"
Otherwise, if you have the URL in a string you will need to remove any hash or query strings:
|
|||
|
|