[Greasemonkey] Redirecting

Saravanan saravanannkl at gmail.com
Thu Aug 10 17:40:41 EDT 2006


>>One method is to use
>>document.location = 'new ULR here';

This will not work. you have to use
window.location.href = "http://example.com/";
or
document.location.href = "http://example.com/";


See  Pitfall #7 in http://www.oreillynet.com/lpt/a/6257

Saravanan


More information about the Greasemonkey mailing list