[Greasemonkey] document.title not changing?

Jeremy Dunck jdunck at gmail.com
Mon Jan 30 18:50:04 EST 2006


On 1/30/06, Dave Land <land at aol.com> wrote:
> Greetings, fellow monkeyers,
>
> Should I expect the following line of code:
>
>      document.title = "what I want it to be";


This works for me:
// ==UserScript==
// @name           title change
// @namespace      http://dunck.us/code/greasemonkey/titlechange
// @description    stupid title change debugging.
// @include       
http://www.mail.com/scripts/common/index.main?signin=1&lang=us
// ==/UserScript==

alert('x');
document.title = 'foo';
alert('y');


More information about the Greasemonkey mailing list