Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this code

var pathname = window.location.pathname;

That take the current browser url

How can i paste the pathname into an html element like a p tag?

share|improve this question
Cool. What did you try and what happens? – Xeon06 Mar 30 '12 at 18:06

1 Answer

Use this:

$('p.class').html(location.pathname);

If you want to get the full URL:

$('p.class').html(location.href);
share|improve this answer
2  
FYI -- If one wanted to get the URL rather than the PATH, one could use locaiton.href. – ipd Mar 30 '12 at 18:11
That's right, but if you just want the path name (for this page it'd be /questions/9948212/jquery-get-browser-url-and-insert-into-html-element), you'd use this – hohner Mar 30 '12 at 18:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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