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?
|
Which of the following should I use to assign the
Why are there so many methods? Is there any difference? |
|||||||
|
|
I would use The W3C specs say:
so those two are indeed equivalent (in fact exactly the same object).
|
|||||||||||||||||
|
|
They all refer to the same object. Though,
Browser differences/vestigial remnants from a bygone era. |
|||||||||||
|
|
In a web browser,
Will alert |
|||||
|
|
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. |
|||||||||||||
|