473,748 Members | 2,426 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Why isn't location.replac e() overrideable?

I'm trying to override location.replac e() but I can't. I can override
window.open(), document.write( ), and other built-in methods, but not
location.replac e(). Here's a demo that overrides two built-in methods,
then reports on them:

location.replac e= function (url) { alert(url) } ;
alert('location .replace=\n'+lo cation.replace) ;
document.write= function (html) { alert(html) } ;
alert('document .write=\n'+docu ment.write) ;

The first alert shows location.replac e is still "[native code]", while the
second alert shows that document.write has been correctly overridden.

The same happens if the first two lines above are put into the "onclick"
attribute of a button, so it wouldn't seem to be that the window.location
object's not created yet, etc.

Any ideas? Also, while window.open() seems overrideable in most browsers,
am I wrong to assume that location.replac e() should be also?
(document.write is overrideable in Mozilla, which I'm using.) Note that
I'm using the actual window etc. objects this time, not the Window etc.
prototypes.

Thanks a lot!
James
............... ............... ............... ............... ............... ..
James Marshall ja***@jmarshall .com Berkeley, CA @}-'-,--
"Teach people what you know."
............... ............... ............... ............... ............... ..
Jul 20 '05 #1
2 3616
in IE it actually replaces both, yet on NS6 it overrides only, as yuou
report in your example, document.write and still says native code for
location.replac e. I think you were referring to NS6 ++.

It cannot be overridden also by using the constructor new Function, which I
tried.

I don't know the explanation, I'd need to know the internal arrangements of
the interpreter. Yet, it is possible that a few objects are sort of
"protected" by their signatures.
This might be a case in point affecting NS6, whereas a case for IE could
be:

"I can't see any other viable explanation for behaviours like those that
when looping navigator.plugi ns trigger an Error:
alert(typeof navigator.plugi ns);
for(var i in navigator.plugi ns){alert(i)}
The loop yields an error (in Explorer 6 at least), although the typeof
returns Object and therefore the object should have been liable to be looped
by a for-in cycle like absolutely all objects are "

That is, it seems that there are a few dependances of the objects which
aren't accessible. Sorry that i don't have a better answer, maybe other
users have it: i can just stress for you that a few objects deny themselves
to tasks that other objects, apparently exactly on the same tier of the
hierarchy, lend themselves to without problems. That is, it might be, say,
not your "fault"!

ciao
Alberto
http://www.unitedscripters.com/


"James Marshall" <js*@jmarshall. com> ha scritto nel messaggio
news:Pi******** *************** *************** @jmarshall.com. ..
I'm trying to override location.replac e() but I can't. I can override
window.open(), document.write( ), and other built-in methods, but not
location.replac e(). Here's a demo that overrides two built-in methods,
then reports on them:

location.replac e= function (url) { alert(url) } ;
alert('location .replace=\n'+lo cation.replace) ;
document.write= function (html) { alert(html) } ;
alert('document .write=\n'+docu ment.write) ;

The first alert shows location.replac e is still "[native code]", while the
second alert shows that document.write has been correctly overridden.

The same happens if the first two lines above are put into the "onclick"
attribute of a button, so it wouldn't seem to be that the window.location
object's not created yet, etc.

Any ideas? Also, while window.open() seems overrideable in most browsers,
am I wrong to assume that location.replac e() should be also?
(document.write is overrideable in Mozilla, which I'm using.) Note that
I'm using the actual window etc. objects this time, not the Window etc.
prototypes.

Thanks a lot!
James
............... ............... ............... ............... ............... .. James Marshall ja***@jmarshall .com Berkeley, CA @}-'-,--
"Teach people what you know."
............... ............... ............... ............... ............... ..

Jul 20 '05 #2
James Marshall wrote:
I'm trying to override location.replac e() but I can't.


I guess it is protected because it manipulates the history. Besides,
(window.)locati on is a host object, do not expect it to be supported.
PointedEars
Jul 20 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
8567
by: Andoni | last post by:
Hi, I am only writing for IE 5.5+ so no need for compatibility at all ;-) I am trying to get my users to logoff which they finish on a particular page. This is no problem (or should be no problem) as I can just put a location.replace('http://www.mysite.com/html/logoff.jsp'); into the onUnload event of the page they always finish on. This should fire when they click the X in the corner (my app. is in a popup window) instead of hitting...
5
7538
by: spam_me_ not | last post by:
I already understand that one cannot disable a browser's forward and back functions. This is a situation where I have code working in Mozilla V1.6 and would like something similar for Opera and IE. I link within a page and display individual divisions of that page, manipulating their visibility and display styles with an onClick function. As long as I explicitly click a link to progress, it works with browsers I've tried.
10
16590
by: Roland | last post by:
Hello, the example code is the following(the number in parentheses at the beginning are just for reference)(The complete HTML file is at the end of this article): (1)window.location = 'http://www.google.com'; (2)alert("I'm still here!"); (3)window.open("http://www.slashdot.com", "_blank");
1
2582
by: solutions | last post by:
Hi, Here is my relevant code for an arbitrary page (let's call it PAGE_B): <body onload="window.location.hash='anchor';"> With this code, if the user goes from PAGE_A to PAGE_B, he will jump to PAGE_B#anchor after PAGE_B has fully loaded. BUT... if he clicks the back button, instead of returning to PAGE_A (which is what I want), he will return to PAGE_B (without the anchor).
2
8571
by: JHB | last post by:
Hi, How can I do a location.replace when I use a form, like when I use a href? This works. <a href="Ny HTML-side20.htm"; method="post" id="frm" name="BrugerHovedSide" onsubmit="location.replace(this.href);" > <input class="ok" type="submit" value="Opfrisk data" id=submit1 name=submit1> </a>
3
3440
by: Al | last post by:
Hi all... I have created an aspx page that contains an animated GIF. I am using javascript and location.replace to redirect from this page to another aspx page which takes several seconds to load. When location.replace is called the animated GIFs in the first page stop animating. Is this standard behaviour? If so, is there an easy work around to prevent this?
9
6648
by: Jean Pierre Daviau | last post by:
Hi everybody, I have this function in a page (namely cours.html) function go(inValue) { var lien = 'file:///F:/MyWebs/jeanpierredaviaucom/httpdocs/cours1.html?T1=' + document.R.T1.value;
4
1546
by: /dev/null | last post by:
I tried soemthing like: if (top != self) top.location.href = self; or if (window == top) top.location.replace("index.html"); doesn't work.
12
2231
by: Jack | last post by:
Since, I have not got some desired advise, I am reposting this for some asnwer/valuable suggestion. Thanks. THE FOLLOWING IS A PART OF CODE FROM A ASP PAGE <% sql01 = "SELECT COUNT(*) AS reccount FROM Equipmenttbl " sql01 = sql01 & "WHERE Equipmenttbl.GrantID = " & GrantID
0
9530
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9363
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9312
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
6073
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4593
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4864
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3300
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2775
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2206
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.