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.

Possible Duplicate:
Creating a new Location object in javascript

If the user inputs a string that is a URL, what's the easiest way to turn it into a Location object (like window.location) so I can use methods and properties like obj.hostname?

share|improve this question
location.constructor() === TypeError: Illegal constructor. Interpreter says no. You can always create an iframe, navigate to the url in the iframe then access the location object in the iframe. (bad idea) – Raynos Jul 18 '11 at 17:14
@lwburk -- Yep, that's what I was trying to find with my 30 minutes of searching prior to posting this. >.> – Kerrick Jul 18 '11 at 17:16

marked as duplicate by Barmar, Jaime, rhalbersma, Yuushi, Arun Feb 5 at 7:44

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 2 down vote accepted

Don't know if you can create a Location object, but this article explains how to use an anchor tag for the same effect:

http://james.padolsey.com/javascript/parsing-urls-with-the-dom/

share|improve this answer

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