vote up 6 vote down star
3

Dear all I am using JQuery, i have little doubt of How to extract the Path of current,

if Url is

http://localhost/menuname.de?foo=bar&number=0"

How assign it to a variable, of current the path ,In jQuery any idea?

flag

78% accept rate

3 Answers

vote up 12 vote down check

To get the path, you can use window.location.pathname:

$(document).ready(function() {
    var pathname = window.location.pathname;
});
link|flag
vote up 4 vote down

You'll want to use javascript's built-in window.location object:

link|flag
vote up 9 vote down
$(document).ready(function() {
    // to show it in an alert window
    alert(window.location);

    // to store it in a variable
    var loc = window.location;
});

window.location is standard JavaScript and does not require jQuery.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.