in reply to Re: JavaScript & Perl
in thread JavaScript & Perl

I'm no JavaScript expert (as jlp will point out), but I thought it was document.location = "foo".

Actually, it's:
location.href = "http://someplace.com";
Meaning that's what seems to work for me (whereas location won't under netscape :)
location is merely an implicit way of stating document.location.

-- ar0n