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?
If the user inputs a string that is a URL, what's the easiest way to turn it into a Location object (like |
|||
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.
|
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/ |
|||
|
|
location.constructor()===TypeError: Illegal constructor. Interpreter says no. You can always create an iframe, navigate to the url in the iframe then access thelocationobject in the iframe. (bad idea) – Raynos Jul 18 '11 at 17:14