The following works for my simple apps in Firefox and IE7 but not in
IE6. In IE6 nothing shows until you click on the blank page. Probably
most of you experts know this but I scratched my head for a while
before hitting on the solution. I originally put the 'script' tag in
the body because that is the way KitchenSink has it. How come it works
for KitchenSink but not for my applications?
<html>
<head>
...
</head>
<body>
<script language="javascript" src="gwt.js"></script>
</body>
</html>
This works in all browsers.
<html>
<head>
<script language="javascript" src="gwt.js"></script>
</head>
<body/>
</html>