GWT: how can I change browser tab name?

browser, gwt, html, internet-explorer, java

Solution

You can alter the title of the page with the following code

Window.setTitle("My Place Name");

Do notice that the place who call this the latest will set its title.

Problem

I know that to change the name of the tab in which browser opens the site I need to to change the title tag in the html file. But in GWT the things are a bit different: each new place uses the same html file, so the browser tab's name will be the same for all the places. - How can I specify a name for each of my places? - This idea above do not work in IE 9. In IE 9 I see www.my-site.com/#my-place-name: name of the browser tab displayed instead of the contents of title tag. How can I make it work for IE too?

Original source