I am looking for document.write()
property in iGoogle gadgets, how can I do the thing below in iGoogle gadget? In other words, I want stdout var in a script.
<html> <body>
<script type="text/javascript"> var firstname; firstname="Hege"; document.write(firstname); document.write("<br />"); firstname="Tove"; document.write(firstname); </script>
<p>The script above declares a variable, assigns a value to it, displays the value, changes the value, and displays the value again.</p>
</body> </html>