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.

Which of the following should I use to assign the location object to a local variable in javascript?

var l = location;
var l = window.location;
var l = window.document.location;

Why are there so many methods? Is there any difference?

share|improve this question
2  
@Xander the duplicate has a comment referring to a better duplicate, check it out stackoverflow.com/questions/2430936/… – Esailija May 30 '12 at 22:07
@Xander Thanks! That answer is helpful. I voted to close my own question. :) – Web_Designer Jun 5 '12 at 16:11

4 Answers

up vote 3 down vote accepted

I would use window.location, to help ensure I was really talking about the global object's property, and not some local variable which happens to be called location.

The W3C specs say:

The location attribute of the Window interface must return the Location object for that Window object's Document.

so those two are indeed equivalent (in fact exactly the same object).

location just happens to be a short hand for window.location, so long as there's no other variable named location in the scope.

share|improve this answer
what if window is some local variable? – Esailija May 30 '12 at 21:52
1  
@Esailija that's indeed possible, as I'm sure you know, but you can't insure against stupidity... That's why I said help ensure. – Alnitak May 30 '12 at 21:52
1  
Yes you can, new Function( "return this;")().location, anything less and you might as well use location directly :P – Esailija May 30 '12 at 21:55
the w3c spec speaks there about the window.location attribute. not the document.location attribute. big differences and problems can occur if you assume they are the same. – Michael Dibbets May 30 '12 at 21:55
2  
@MichaelDibbets I think you're confusing window.document.location with parent.document.location in the iframe case. – Alnitak May 30 '12 at 22:07
show 3 more comments

They all refer to the same object. Though, window.location is more explicit, cross browser compliant and can prevent collisions with other variables named location in different scopes.

Why so many ways?

Browser differences/vestigial remnants from a bygone era.

share|improve this answer
Why so many ways? – Web_Designer May 30 '12 at 21:47
They do not refer to same object. they are same types, but they do differ. See my answer – Michael Dibbets May 30 '12 at 21:52
@Xander - I did not downvote your answer, I'm fine with it! – Mike Christensen May 30 '12 at 21:56
@Xander - Cowards! I'll give you an upvote so you can at least get a net 8. – Mike Christensen May 30 '12 at 22:03
lol, i chose to close it and call it quits on this one... – Xander May 30 '12 at 22:03

In a web browser, window is always at the top of the variable lookup chain. Thus, a global variable x is also window.x. For example:

<script>
var x = 1;
window.alert(window.x);
</script>

Will alert 1. Similarly, location will also resolve as window.location provided there is no more local variable called location in the chain.

share|improve this answer
1  
@Xander - Correct, if x exists within the local scope of a function, it will not be a property of window. Thus, window is perhaps a better way to fully qualify a global version of location if there was also a local variable called location. Provided, of course, there's not also a local variable called window :) – Mike Christensen May 30 '12 at 22:02

window.location is the _top location. document.location is the current html page location

if you are in an iframe document.location of the iframe will differ because window.location refers to the parent page.

by having a check on this you can break from frames by checking if the are te same. if not break from unauthorised framing. or check if my parent page for the i frame is the right one, if not redirect to the right one.

share|improve this answer
I don't think so, provide a jsfiddle. I get document.location === window.location no matter what iframe I am in – Esailija May 30 '12 at 22:01
Its classic location checking. you might want to add .href to you location attribute. if(document.location.href != window.location.href) window.location.href=document.location.href;this code has worked for me since 1998 to prevent illegal framing. – Michael Dibbets May 30 '12 at 22:10
1  
Since they are objects, and the equality test gives true, this means that they point to exactly the same object in memory. How could .href be different for them? – Esailija May 30 '12 at 22:11
2  
@MichaelDibbets are you sure you're not thinking of parent.document.location ? – Alnitak May 30 '12 at 22:13

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.