> seem to remember some browser incompatibility with .location.
> I'm not sure how long ago it was that I did stuff with that,
> but I think netscape didn't like it for some reason. Not
> sure what version. I think we ended up option for .navigate
> instead. (I think that's what it was) I'm sure you'll figure
> it all out.
I'm pretty sure that Netscape has worked with the Location object since
version 2. With older versions, you may have had to specify the exact
property of the Location object that you wanted to change, however. For
example, on modern browsers, these four lines of code are functionally
identical:
window.location.href = '';
window.location = 'foo.cfm';
location.href = '';
location = 'foo.cfm';
On older browsers, you may have had to specify the object that contains the
Location object (Window) and/or the default property of the Location object
(href).
Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
phone: 202-797-5496
fax: 202-797-5444
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

